home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / gnuinfo_920712.lha / makeinfo.c < prev    next >
C/C++ Source or Header  |  1992-07-12  |  153KB  |  6,414 lines

  1. /* Makeinfo -- convert texinfo format files into info files
  2.  
  3.    Copyright (C) 1987, 1991 Free Software Foundation, Inc.
  4.  
  5.    This file is part of GNU Info.
  6.  
  7.    Makeinfo is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY.  No author or distributor accepts
  9.    responsibility to anyone for the consequences of using it or for
  10.    whether it serves any particular purpose or works at all, unless he
  11.    says so in writing.  Refer to the GNU Emacs General Public License
  12.    for full details.
  13.  
  14.    Everyone is granted permission to copy, modify and redistribute
  15.    Makeinfo, but only under the conditions described in the GNU Emacs
  16.    General Public License.   A copy of this license is supposed to
  17.    have been given to you along with GNU Emacs so you can know your
  18.    rights and responsibilities.  It should be in a file named COPYING.
  19.    Among other things, the copyright notice and this notice must be
  20.    preserved on all copies.  */
  21.  
  22. /* **************************************************************** */
  23. /*                                    */
  24. /*            Include File Declarations               */
  25. /*                                    */
  26. /* **************************************************************** */
  27.  
  28. #if defined (_AIX)
  29. #  pragma alloca
  30. #endif /* _AIX */
  31.  
  32. #include <stdio.h>
  33. #include <sys/types.h>
  34. #include <sys/stat.h>
  35. #include <ctype.h>
  36. #include <pwd.h>
  37. #include <errno.h>
  38. #include "getopt.h"
  39.  
  40. #if defined (VMS)
  41. #include <perror.h>
  42. #endif
  43.  
  44. #if defined (USG) || defined (VMS)
  45. #include <string.h>
  46. #include <time.h>
  47. #else
  48. #include <strings.h>
  49. #include <sys/time.h>
  50. #endif
  51.  
  52. #include <fcntl.h>
  53. #include <sys/file.h>
  54.  
  55. #if defined (USG) || defined (hpux)
  56. #define bcopy(source, dest, count) memcpy (dest, source, count)
  57. char *index(s,c) char *s; { char *strchr(); return strchr(s,c); }
  58. char *rindex(s,c) char *s; { char *strrchr(); return strrchr(s,c); }
  59. #endif /* USG || hpux */
  60.  
  61. #if defined (__GNUC__)
  62. #  define alloca __builtin_alloca
  63. #else
  64. #  if defined (sparc)
  65. #    include <alloca.h>
  66. #  else
  67. #    if !defined (_AIX)
  68. extern char *alloca ();
  69. #    endif /* _AIX */
  70. #  endif /* !sparc */
  71. #endif /* !__GNUC__ */
  72.  
  73. /* Forward declarations. */
  74. unsigned char *xmalloc (), *xrealloc ();
  75. extern int in_fixed_width_font;
  76.  
  77. /* Some systems don't declare this function in pwd.h. */
  78. struct passwd *getpwnam ();
  79.  
  80.  
  81. /* **************************************************************** */
  82. /*                                    */
  83. /*                  Global Defines                  */
  84. /*                                    */
  85. /* **************************************************************** */
  86.  
  87. /* Error levels */
  88. #define NO_ERROR 0
  89. #define SYNTAX     2
  90. #define FATAL     4
  91.  
  92. /* Boolean values. */
  93. #define true  1
  94. #define false 0
  95. typedef int boolean;
  96.  
  97. /* How to allocate permanent storage for STRING. */
  98. #define savestring(x) \
  99.   ((char *)strcpy ((char *)xmalloc (1 + ((x) ? strlen (x) : 0)), \
  100.            (x) ? (x) : ""))
  101.  
  102. /* C's standard macros don't check to make sure that the characters being
  103.    changed are within range.  So I have to check explicitly. */
  104.  
  105. /* GNU Library doesn't have toupper().  Until GNU gets this fixed, I will
  106.    have to do it. */
  107. #ifndef toupper
  108. #define toupper(c) ((c) - 32)
  109. #endif
  110.  
  111. #define coerce_to_upper(c) ((islower(c) ? toupper(c) : (c)))
  112. #define coerce_to_lower(c) ((isupper(c) ? tolower(c) : (c)))
  113.  
  114. #define control_character_bit 0x40 /* %01000000, must be off. */
  115. #define meta_character_bit 0x080/* %10000000, must be on.  */
  116. #define CTL(c) ((c) & (~control_character_bit))
  117. #define UNCTL(c) coerce_to_upper(((c)|control_character_bit))
  118. #define META(c) ((c) | (meta_character_bit))
  119. #define UNMETA(c) ((c) & (~meta_character_bit))
  120.  
  121. #define whitespace(c) (((c) == '\t') || ((c) == ' '))
  122. #define sentence_ender(c) ((c) == '.' || (c) == '?' || (c) == '!')
  123. #define cr_or_whitespace(c) (((c) == '\t') || ((c) == ' ') || ((c) == '\n'))
  124. #define member(c, s) (index (s, c) != NULL)
  125.  
  126. #define COMMAND_PREFIX '@'
  127.  
  128. /* Stuff for splitting large files. */
  129. #define SPLIT_SIZE_THRESHOLD 70000    /* What's good enough for Stallman... */
  130. #define DEFAULT_SPLIT_SIZE 50000/* Is probably good enough for me. */
  131. boolean splitting = true;    /* Always true for now. */
  132.  
  133. typedef int FUNCTION ();    /* So I can say FUNCTION *foo; */
  134.  
  135.  
  136. /* **************************************************************** */
  137. /*                                    */
  138. /*                Global Variables                */
  139. /*                                    */
  140. /* **************************************************************** */
  141.  
  142. /* Global pointer to argv[0]. */
  143. char *progname;
  144.  
  145. /* The current input file state. */
  146. char *input_filename;
  147. char *input_text;
  148. int size_of_input_text;
  149. int input_text_offset;
  150. int line_number;
  151.  
  152. #define curchar() input_text[input_text_offset]
  153.  
  154. #define command_char(c) ((!whitespace(c)) && \
  155.              ((c) != '\n') && \
  156.              ((c) != '{') && \
  157.              ((c) != '}'))
  158.  
  159. #define skip_whitespace() while (input_text_offset != size_of_input_text \
  160.                  && whitespace(curchar()))\
  161.   input_text_offset++
  162.  
  163. /* Return non-zero if STRING is the text at input_text + input_text_offset,
  164.    else zero. */
  165. #define looking_at(string) \
  166.   (strncmp (input_text + input_text_offset, string, strlen (string)) == 0)
  167.  
  168. /* And writing to the output. */
  169.  
  170. /* The output file name. */
  171. char *output_filename = NULL, *pretty_output_filename;
  172.  
  173. /* Current output stream. */
  174. FILE *output_stream;
  175.  
  176. /* Position in the output file. */
  177. int output_position;
  178.  
  179. /* Output paragraph buffer. */
  180. unsigned char *output_paragraph;
  181.  
  182. /* Offset into OUTPUT_PARAGRAPH. */
  183. int output_paragraph_offset;
  184.  
  185. /* The output paragraph "cursor" horizontal position. */
  186. int output_column = 0;
  187.  
  188. /* Non-zero means output_paragraph contains text. */
  189. boolean paragraph_is_open = false;
  190.  
  191. #define INITIAL_PARAGRAPH_SPACE 5000
  192. int paragraph_buffer_len = INITIAL_PARAGRAPH_SPACE;
  193.  
  194. /* Filling.. */
  195. /* True indicates that filling will take place on long lines. */
  196. boolean filling_enabled = true;
  197.  
  198. /* Non-zero means that words are not to be split, even in long lines.  This
  199.    gets changed for cm_w (). */
  200. int non_splitting_words = 0;
  201.  
  202. /* True indicates that filling a line also indents the new line. */
  203. boolean indented_fill = false;
  204.  
  205. /* The column at which long lines are broken. */
  206. int fill_column = 72;
  207.  
  208. /* The amount of indentation to apply at the start of each line. */
  209. int current_indent = 0;
  210.  
  211. /* The amount of indentation to add at the starts of paragraphs.
  212.    0 means don't change existing indentation at paragraph starts.
  213.    > 0 is amount to indent new paragraphs by.
  214.    < 0 means indent to column zero by removing indentation if necessary.
  215.  
  216.    This is normally zero, but some people prefer paragraph starts to be
  217.    somewhat more indented than paragraph bodies.  A pretty value for
  218.    this is 3. */
  219. int paragraph_start_indent = 3;
  220.  
  221. /* Non-zero means that the use of paragraph_start_indent is inhibited.
  222.    @example uses this to line up the left columns of the example text.
  223.    A negative value for this variable is incremented each time it is used.
  224.    @noindent uses this to inhibit indentation for a single paragraph.  */
  225. int inhibit_paragraph_indentation = 0;
  226.  
  227. /* Indentation that is pending insertion.  We have this for hacking lines
  228.    which look blank, but contain whitespace.  We want to treat those as
  229.    blank lines. */
  230. int pending_indent = 0;
  231.  
  232. /* The amount that indentation increases/decreases by. */
  233. int default_indentation_increment = 5;
  234.  
  235. /* True indicates that indentation is temporarily turned off. */
  236. boolean no_indent = true;
  237.  
  238. /* Non-zero means forciing output text to be flushright. */
  239. int force_flush_right = 0;
  240.  
  241. /* Non-zero means that we automatically number footnotes that have no
  242.    specified marker. */
  243. int number_footnotes = 1;
  244.  
  245. /* The current footnote number in this node.  Each time a new node is
  246.    started this is reset to 1. */
  247. int current_footnote_number = 1;
  248.  
  249. /* Command name in the process of being hacked. */
  250. char *command;
  251.  
  252. /* The index in our internal command table of the currently
  253.    executing command. */
  254. int command_index;
  255.  
  256. /* A stack of file information records.  If a new file is read in with
  257.    "@input", we remember the old input file state on this stack. */
  258. typedef struct fstack
  259. {
  260.   struct fstack *next;
  261.   char *filename;
  262.   char *text;
  263.   int size;
  264.   int offset;
  265.   int line_number;
  266. } FSTACK;
  267.  
  268. FSTACK *filestack = (FSTACK *) NULL;
  269.  
  270. /* Stuff for nodes. */
  271. /* The current nodes node name. */
  272. char *current_node = (char *)NULL;
  273.  
  274. /* The current nodes section level. */
  275. int current_section = 0;
  276.  
  277. /* The filename of the current input file.  This is never freed. */
  278. char *node_filename = (char *)NULL;
  279.  
  280. /* What we remember for each node. */
  281. typedef struct tentry
  282. {
  283.   struct tentry *next_ent;
  284.   char *node;        /* name of this node. */
  285.   char *prev;        /* name of "Prev:" for this node. */
  286.   char *next;        /* name of "Next:" for this node. */
  287.   char *up;        /* name of "Up:" for this node.   */
  288.   int position;        /* output file position of this node. */
  289.   int line_no;        /* defining line in source file. */
  290.   char *filename;    /* The file that this node was found in. */
  291.   int touched;        /* non-zero means this node has been referenced. */
  292.   int flags;        /* Room for growth.  Right now, contains 1 bit. */
  293. } TAG_ENTRY;
  294.  
  295. /* If node-a has a "Next" for node-b, but node-b has no "Prev" for node-a,
  296.    we turn on this flag bit in node-b's tag entry.  This means that when
  297.    it is time to validate node-b, we don't report an additional error
  298.    if there was no "Prev" field. */
  299. #define PREV_ERROR 0x1
  300. #define NEXT_ERROR 0x2
  301. #define UP_ERROR   0x4
  302. #define NO_WARN       0x8
  303. #define IS_TOP        0x10
  304.  
  305. TAG_ENTRY *tag_table = (TAG_ENTRY *) NULL;
  306.  
  307. /* Menu reference, *note reference, and validation hacking. */
  308.  
  309. /* The various references that we know about. */
  310. enum reftype
  311. {
  312.   menu_reference, followed_reference
  313. };
  314.  
  315. /* A structure to remember references with.  A reference to a node is
  316.    either an entry in a menu, or a cross-reference made with [px]ref. */
  317. typedef struct node_ref
  318. {
  319.   struct node_ref *next;
  320.   char *node;            /* Name of node referred to. */
  321.   char *containing_node;    /* Name of node containing this reference. */
  322.   int line_no;            /* Line number where the reference occurs. */
  323.   int section;            /* Section level where the reference occurs. */
  324.   char *filename;        /* Name of file where the reference occurs. */
  325.   enum reftype type;        /* Type of reference, either menu or note. */
  326. } NODE_REF;
  327.  
  328. /* The linked list of such structures. */
  329. NODE_REF *node_references = (NODE_REF *) NULL;
  330.  
  331. /* Flag which tells us whether to examine menu lines or not. */
  332. int in_menu = 0;
  333.  
  334. /* Flags controlling the operation of the program. */
  335.  
  336. /* Default is to notify users of bad choices. */
  337. boolean print_warnings = true;
  338.  
  339. /* Default is to check node references. */
  340. boolean validating = true;
  341.  
  342. /* Number of errors that we tolerate on a given fileset. */
  343. int max_error_level = 100;
  344.  
  345. /* Maximum number of references to a single node before complaining. */
  346. int reference_warning_limit = 1000;
  347.  
  348. /* Non-zero means print out information about what is going on when it
  349.    is going on. */
  350. int verbose_mode = 0;
  351.  
  352. /* The list of commands that we hack in texinfo.  Each one
  353.    has an associated function.  When the command is encountered in the
  354.    text, the associated function is called with START as the argument.
  355.    If the function expects arguments in braces, it remembers itself on
  356.    the stack.  When the corresponding close brace is encountered, the
  357.    function is called with END as the argument. */
  358.  
  359. #define START 0
  360. #define END 1
  361.  
  362. typedef struct brace_element
  363. {
  364.   struct brace_element *next;
  365.   FUNCTION *proc;
  366.   int pos, line;
  367. } BRACE_ELEMENT;
  368.  
  369. BRACE_ELEMENT *brace_stack = (BRACE_ELEMENT *) NULL;
  370.  
  371. /* Forward declarations. */
  372.  
  373. int
  374. insert_self (), cm_tex (), cm_asterisk (), cm_dots (), cm_bullet (),
  375. cm_TeX (), cm_copyright (), cm_code (), cm_samp (), cm_file (), cm_kbd (),
  376. cm_key (), cm_ctrl (), cm_var (), cm_dfn (), cm_emph (), cm_strong (),
  377. cm_cite (), cm_italic (), cm_bold (), cm_roman (), cm_title (), cm_w (),
  378. cm_refill ();
  379.  
  380. int
  381. cm_chapter (), cm_unnumbered (), cm_appendix (), cm_top (),
  382. cm_section (), cm_unnumberedsec (), cm_appendixsec (),
  383. cm_subsection (), cm_unnumberedsubsec (), cm_appendixsubsec (),
  384. cm_subsubsection (), cm_unnumberedsubsubsec (), cm_appendixsubsubsec (),
  385. cm_heading (), cm_chapheading (), cm_subheading (), cm_subsubheading (),
  386. cm_majorheading ();
  387.  
  388. /* All @defxxx commands map to cm_defun (). */
  389. int
  390. cm_defun ();
  391.  
  392. int
  393.   cm_node (), cm_menu (), cm_xref (), cm_ftable (), cm_alphaenumerate (),
  394.   cm_pxref (), cm_inforef (), cm_quotation (), cm_display (), cm_itemize (),
  395.   cm_enumerate (), cm_table (), cm_itemx (), cm_noindent (), cm_setfilename (),
  396.   cm_comment (), cm_br (), cm_sp (), cm_page (), cm_group (), cm_need (),
  397.   cm_center (), cm_include (), cm_bye (), cm_item (), cm_end (),
  398.   cm_infoinclude (), cm_ifinfo (), cm_kindex (), cm_cindex (), cm_findex (),
  399.   cm_pindex (), cm_vindex (), cm_tindex (), cm_asis (), cm_synindex (),
  400.   cm_settitle (), cm_setchapternewpage (), cm_printindex (), cm_minus (),
  401.   cm_footnote (), cm_force_abbreviated_whitespace (), cm_force_sentence_end (),
  402.   cm_example (), cm_smallexample (), cm_lisp (), cm_format (), cm_exdent (),
  403.   cm_defindex (), cm_defcodeindex (), cm_sc (), cm_result (), cm_expansion (),
  404.   cm_equiv (), cm_print (), cm_error (), cm_point (), cm_smallbook (),
  405.   cm_headings (), cm_today (), cm_flushleft (), cm_flushright (),
  406.   cm_smalllisp (), cm_finalout (), cm_math (), cm_capsenumerate (),
  407.   cm_cartouche ();
  408.  
  409. /* Conditionals. */
  410. int cm_set (), cm_clear (), cm_ifset (), cm_ifclear ();
  411.  
  412. /* Options. */
  413. int cm_paragraphindent (), cm_footnotestyle ();
  414.  
  415. /* Internals. */
  416. int do_nothing (), command_name_condition ();
  417. int misplaced_brace (), cm_obsolete ();
  418.  
  419. typedef struct
  420. {
  421.   char *name;
  422.   FUNCTION *proc;
  423.   boolean argument_in_braces;
  424. } COMMAND;
  425.  
  426. /* Stuff for defining commands on the fly. */
  427. COMMAND **user_command_array = (COMMAND **) NULL;
  428. int user_command_array_len = 0;
  429.  
  430. static COMMAND CommandTable[] = {
  431.   { "!", cm_force_sentence_end, false },
  432.   { "'", insert_self, false },
  433.   { "*", cm_asterisk, false },
  434.   { ".", cm_force_sentence_end, false },
  435.   { ":", cm_force_abbreviated_whitespace, false },
  436.   { "?", cm_force_sentence_end, false },
  437.   { "@", insert_self, false },
  438.   { " ", insert_self, false },
  439.   { "\n", insert_self, false },
  440.   { "TeX", cm_TeX, true },
  441.   { "`", insert_self, false },
  442.   { "alphaenumerate", cm_alphaenumerate, false },
  443.   { "appendix", cm_appendix, false },
  444.   { "appendixsection", cm_appendixsec, false },
  445.   { "appendixsec", cm_appendixsec, false },
  446.   { "appendixsubsec", cm_appendixsubsec, false },
  447.   { "appendixsubsubsec", cm_appendixsubsubsec, false },
  448.   { "asis", cm_asis, true },
  449.   { "b", cm_bold, true },
  450.   { "br", cm_br, false },
  451.   { "bullet", cm_bullet, true },
  452.   { "bye", cm_bye, false },
  453.   { "c", cm_comment, false },
  454.   { "capsenumerate", cm_capsenumerate, false },
  455.   { "cartouche", cm_cartouche, false },
  456.   { "center", cm_center, false },
  457.   { "chapheading", cm_chapheading, false },
  458.   { "chapter", cm_chapter, false },
  459.   { "cindex", cm_cindex, false },
  460.   { "cite", cm_cite, true },
  461.   { "clear", cm_clear, false },
  462.   { "code", cm_code, true },
  463.   { "comment", cm_comment, false },
  464.   { "contents", do_nothing, false },
  465.   { "copyright", cm_copyright, true },
  466.   { "ctrl", cm_ctrl, true },
  467.   { "defcodeindex", cm_defcodeindex, false },
  468.   { "defindex", cm_defindex, false },
  469.   { "dfn", cm_dfn, true },
  470.  
  471. /* The `def' commands. */
  472.   { "deffn", cm_defun, false },
  473.   { "deffnx", cm_defun, false },
  474.   { "defun", cm_defun, false },
  475.   { "defunx", cm_defun, false },
  476.   { "defmac", cm_defun, false },
  477.   { "defmacx", cm_defun, false },
  478.   { "defspec", cm_defun, false },
  479.   { "defspecx", cm_defun, false },
  480.   { "defvr", cm_defun, false },
  481.   { "defvrx", cm_defun, false },
  482.   { "defvar", cm_defun, false },
  483.   { "defvarx", cm_defun, false },
  484.   { "defopt", cm_defun, false },
  485.   { "defoptx", cm_defun, false },
  486.   { "deftypefn", cm_defun, false },
  487.   { "deftypefnx", cm_defun, false },
  488.   { "deftypefun", cm_defun, false },
  489.   { "deftypefunx", cm_defun, false },
  490.   { "deftypevr", cm_defun, false },
  491.   { "deftypevrx", cm_defun, false },
  492.   { "deftypevar", cm_defun, false },
  493.   { "deftypevarx", cm_defun, false },
  494.   { "defcv", cm_defun, false },
  495.   { "defcvx", cm_defun, false },
  496.   { "defivar", cm_defun, false },
  497.   { "defivarx", cm_defun, false },
  498.   { "defop", cm_defun, false },
  499.   { "defopx", cm_defun, false },
  500.   { "defmethod", cm_defun, false },
  501.   { "defmethodx", cm_defun, false },
  502.   { "deftypemethod", cm_defun, false },
  503.   { "deftypemethodx", cm_defun, false },
  504.   { "deftp", cm_defun, false },
  505.   { "deftpx", cm_defun, false },
  506. /* The end of the `def' commands. */
  507.  
  508.   { "display", cm_display, false },
  509.   { "dots", cm_dots, true },
  510.   { "dmn", do_nothing, true },
  511.   { "emph", cm_emph, true },
  512.   { "end", cm_end, false },
  513.   { "enumerate", cm_enumerate, false },
  514.   { "equiv", cm_equiv, true },
  515.   { "error", cm_error, true },
  516.   { "example", cm_example, false },
  517.   { "exdent", cm_exdent, false },
  518.   { "expansion", cm_expansion, true },
  519.   { "file", cm_file, true },
  520.   { "findex", cm_findex, false },
  521.   { "finalout", do_nothing, false },
  522.   { "flushleft", cm_flushleft, false },
  523.   { "flushright", cm_flushright, false },
  524.   { "format", cm_format, false },
  525.   { "ftable", cm_ftable, false },
  526.   { "group", cm_group, false },
  527.   { "heading", cm_heading, false },
  528.   { "headings", cm_headings, false },
  529.   { "i", cm_italic, true },
  530.   { "iappendix", cm_appendix, false },
  531.   { "iappendixsection", cm_appendixsec, false },
  532.   { "iappendixsec", cm_appendixsec, false },
  533.   { "iappendixsubsec", cm_appendixsubsec, false },
  534.   { "iappendixsubsubsec", cm_appendixsubsubsec, false },
  535.   { "ichapter", cm_chapter, false },
  536.   { "ifclear", cm_ifclear, false },
  537.   { "ifinfo", cm_ifinfo, false },
  538.   { "ifset", cm_ifset, false },
  539.   { "iftex", command_name_condition, false },
  540.   { "ignore", command_name_condition, false },
  541.   { "include", cm_include, false },
  542.   { "inforef", cm_inforef, true },
  543.   { "input", cm_include, false },
  544.   { "isection", cm_section, false },
  545.   { "isubsection", cm_subsection, false },
  546.   { "isubsubsection", cm_subsubsection, false },
  547.   { "item", cm_item, false },
  548.   { "itemize", cm_itemize, false },
  549.   { "itemx", cm_itemx, false },
  550.   { "iunnumbered", cm_unnumbered, false },
  551.   { "iunnumberedsec", cm_unnumberedsec, false },
  552.   { "iunnumberedsubsec", cm_unnumberedsubsec, false },
  553.   { "iunnumberedsubsubsec", cm_unnumberedsubsubsec, false },
  554.   { "kbd", cm_kbd, true },
  555.   { "key", cm_key, true },
  556.   { "kindex", cm_kindex, false },
  557.   { "lisp", cm_lisp, false },
  558.   { "majorheading", cm_majorheading, false },
  559.   { "math", cm_math, true },
  560.   { "menu", cm_menu },
  561.   { "minus", cm_minus, true },
  562.   { "need", cm_need, false },
  563.   { "node", cm_node, false },
  564.   { "noindent", cm_noindent, false },
  565.   { "page", do_nothing, false },
  566.   { "pindex", cm_pindex, false },
  567.   { "point", cm_point, true },
  568.   { "print", cm_print, true },
  569.   { "printindex", cm_printindex, false },
  570.   { "pxref", cm_pxref, true },
  571.   { "quotation", cm_quotation, false },
  572.   { "r", cm_roman, true },
  573.   { "ref", cm_xref, true },
  574.   { "refill", cm_refill, false },
  575.   { "result", cm_result, true },
  576.   { "samp", cm_samp, true },
  577.   { "sc", cm_sc, true },
  578.   { "section", cm_section, false },
  579.   { "set", cm_set, false },
  580.   { "setchapternewpage", cm_setchapternewpage, false },
  581.   { "setfilename", cm_setfilename, false },
  582.   { "settitle", cm_settitle, false },
  583.   { "shortcontents", do_nothing, false },
  584.   { "smallbook", cm_smallbook, false },
  585.   { "smallexample", cm_smallexample, false },
  586.   { "smalllisp", cm_smalllisp, false },
  587.   { "sp", cm_sp, false },
  588.   { "strong", cm_strong, true },
  589.   { "subheading", cm_subheading, false },
  590.   { "subsection", cm_subsection, false },
  591.   { "subsubheading", cm_subsubheading, false },
  592.   { "subsubsection", cm_subsubsection, false },
  593.   { "summarycontents", do_nothing, false },
  594.   { "syncodeindex", cm_synindex, false },
  595.   { "synindex", cm_synindex, false },
  596.   { "t", cm_title, true },
  597.   { "table", cm_table, false },
  598.   { "tex", command_name_condition, false },
  599.   { "tindex", cm_tindex, false },
  600.   { "titlepage", command_name_condition, false },
  601.   { "titlespec", command_name_condition, false },
  602.   { "today", cm_today, true },
  603.   { "top", cm_top, false  },
  604.   { "unnumbered", cm_unnumbered, false },
  605.   { "unnumberedsec", cm_unnumberedsec, false },
  606.   { "unnumberedsubsec", cm_unnumberedsubsec, false },
  607.   { "unnumberedsubsubsec", cm_unnumberedsubsubsec, false },
  608.   { "var", cm_var, true },
  609.   { "vindex", cm_vindex, false },
  610.   { "w", cm_w, true },
  611.   { "xref", cm_xref, true },
  612.   { "{", insert_self, false },
  613.   { "}", insert_self, false },
  614.  
  615.   /* Some obsoleted commands. */
  616.   { "infotop", cm_obsolete, false },
  617.   { "infounnumbered", cm_obsolete, false },
  618.   { "infounnumberedsec", cm_obsolete, false },
  619.   { "infounnumberedsubsec", cm_obsolete, false },
  620.   { "infounnumberedsubsubsec", cm_obsolete, false },
  621.   { "infoappendix", cm_obsolete, false },
  622.   { "infoappendixsec", cm_obsolete, false },
  623.   { "infoappendixsubsec", cm_obsolete, false },
  624.   { "infoappendixsubsubsec", cm_obsolete, false },
  625.   { "infochapter", cm_obsolete, false },
  626.   { "infosection", cm_obsolete, false },
  627.   { "infosubsection", cm_obsolete, false },
  628.   { "infosubsubsection", cm_obsolete, false },
  629.  
  630.   /* Now @include does what this was supposed to. */
  631.   { "infoinclude", cm_infoinclude, false },
  632.   { "footnote", cm_footnote, false}, /* self-arg eater */
  633.   { "footnotestyle", cm_footnotestyle, false },
  634.   { "paragraphindent", cm_paragraphindent, false },
  635.  
  636.   {(char *) NULL, (FUNCTION *) NULL}, false};
  637.  
  638. int major_version = 1;
  639. int minor_version = 40;
  640.  
  641. struct option long_options[] =
  642. {
  643.   { "error-limit", 1, 0, 'e' },            /* formerly -el */
  644.   { "fill-column", 1, 0, 'f' },            /* formerly -fc */
  645.   { "footnote-style", 1, 0, 's' },        /* formerly -ft */
  646.   { "no-pointer-validate", 0, &validating, false }, /* formerly -nv */
  647.   { "no-split", 0, &splitting, false },        /* formerly -ns */
  648.   { "no-validate", 0, &validating, false },    /* formerly -nv */
  649.   { "no-warn", 0, &print_warnings, false },    /* formerly -nw */
  650.   { "number-footnotes", 0, &number_footnotes, 1 },
  651.   { "no-number-footnotes", 0, &number_footnotes, 0 },
  652.   { "output", 1, 0, 'o' },
  653.   { "paragraph-indent", 1, 0, 'p' },        /* formerly -pi */
  654.   { "reference-limit", 1, 0, 'r' },        /* formerly -rl */
  655.   { "verbose", 0, &verbose_mode, 1 },        /* formerly -verbose */
  656.   { "version", 0, 0, 'V' },
  657.   {NULL, 0, NULL, 0}
  658. };
  659.  
  660. /* **************************************************************** */
  661. /*                                    */
  662. /*            Main ()  Start of code              */
  663. /*                                        */
  664. /* **************************************************************** */
  665.  
  666. /* For each file mentioned in the command line, process it, turning
  667.    texinfo commands into wonderfully formatted output text. */
  668. main (argc, argv)
  669.      int argc;
  670.      char **argv;
  671. {
  672.   extern int errors_printed;
  673.   char *filename_part ();
  674.   int c, ind;
  675.  
  676.   /* The name of this program is the last filename in argv[0]. */
  677.   progname = filename_part (argv[0]);
  678.  
  679.   /* Parse argument flags from the input line. */
  680.   while ((c = getopt_long (argc, argv, "f:o:p:e:r:s:V", long_options, &ind)) != EOF)
  681.     {
  682.       if (c == 0 && long_options[ind].flag == 0)
  683.     c = long_options[ind].val;
  684.  
  685.       switch (c)
  686.     {
  687.       /* User specified output file? */
  688.     case 'o':
  689.       output_filename = optarg;
  690.       break;
  691.  
  692.       /* User specified fill_column? */
  693.     case 'f':
  694.       if (sscanf (optarg, "%d", &fill_column) != 1)
  695.         usage ();
  696.       break;
  697.  
  698.       /* User specified paragraph indent (paragraph_start_index)? */
  699.     case 'p':
  700.       if (sscanf (optarg, "%d", ¶graph_start_indent) != 1)
  701.         usage ();
  702.       break;
  703.  
  704.       /* User specified error level? */
  705.     case 'e':
  706.       if (sscanf (optarg, "%d", &max_error_level) != 1)
  707.         usage ();
  708.       break;
  709.  
  710.       /* User specified reference warning limit? */
  711.     case 'r':
  712.       if (sscanf (optarg, "%d", &reference_warning_limit) != 1)
  713.         usage ();
  714.       break;
  715.  
  716.       /* User specified footnote style? */
  717.     case 's':
  718.       set_footnote_style (optarg);
  719.       break;
  720.  
  721.       /* User requested version info? */
  722.     case 'V':
  723.       print_version_info ();
  724.       exit (NO_ERROR);
  725.       break;
  726.  
  727.     case '?':
  728.       usage ();
  729.     }
  730.     }
  731.  
  732.   if (optind == argc)
  733.     usage ();
  734.   else if (verbose_mode)
  735.     print_version_info ();
  736.  
  737.   /* Remaining arguments are file names of texinfo files.
  738.      Convert them, one by one. */
  739.   while (optind != argc)
  740.     convert (argv[optind++]);
  741.  
  742.   if (errors_printed)
  743.     exit (SYNTAX);
  744.   else
  745.     exit (NO_ERROR);
  746. }
  747.  
  748. /* Display the version info of this invocation of Makeinfo. */
  749. print_version_info ()
  750. {
  751.   fprintf (stderr, "This is GNU Makeinfo version %d.%d.\n",
  752.        major_version, minor_version);
  753. }
  754.  
  755. /* **************************************************************** */
  756. /*                                    */
  757. /*            Generic Utilities                */
  758. /*                                    */
  759. /* **************************************************************** */
  760.  
  761. /* Just like malloc, but kills the program in case of fatal error. */
  762. unsigned char *
  763. xmalloc (nbytes)
  764.      int nbytes;
  765. {
  766.   unsigned char *temp = (unsigned char *) malloc (nbytes);
  767.   if (nbytes != 0 && temp == (unsigned char *) NULL)
  768.     {
  769.       error ("Virtual memory exhausted! Needed %d bytes.", nbytes);
  770.       exit (FATAL);
  771.     }
  772.   return (temp);
  773. }
  774.  
  775. /* Like realloc (), but barfs if there isn't enough memory. */
  776. unsigned char *
  777. xrealloc (pointer, nbytes)
  778.      unsigned char *pointer;
  779.      int nbytes;
  780. {
  781.   unsigned char *temp;
  782.  
  783.   if (!pointer)
  784.     temp = (unsigned char *)xmalloc (nbytes);
  785.   else
  786.     temp = (unsigned char *)realloc (pointer, nbytes);
  787.  
  788.   if (nbytes !=0 && !temp)
  789.     {
  790.       error ("Virtual memory exhausted in xrealloc ().");
  791.       abort ();
  792.     }
  793.   return (temp);
  794. }
  795.  
  796. /* Tell the user how to use this program. */
  797. usage ()
  798. {
  799.   fprintf (stderr, "Usage: %s [options] texinfo-file...\n\
  800. \n\
  801. This program accepts as input files of texinfo commands and text\n\
  802. and outputs a file suitable for reading with GNU Info.\n\
  803. \n\
  804. The options are:\n\
  805. `+no-validate' to suppress node cross reference validation.\n\
  806. `+no-warn' to suppress warning messages (errors are still output).\n\
  807. `+no-split' to suppress the splitting of large files.\n\
  808. `+verbose' to print information about what is being done.\n\
  809. `+version' to print the version number of Makeinfo.\n\
  810. `+paragraph-indent NUM' to set the paragraph indent to NUM (default %d).\n\
  811. `+fill-column NUM' to set the filling column to NUM (default %d).\n\
  812. `+error-limit NUM' to set the error limit to NUM (default %d).\n\
  813. `+reference-limit NUM' to set the reference warning limit to NUM (default %d).\n\
  814. `+footnote-style STYLE' to set the footnote style to STYLE.  STYLE should\n\
  815.   either be `separate' to place footnotes in their own node, or\n\
  816.   `end', to place the footnotes at the end of the node in which they are\n\
  817.    defined (the default).\n\n",
  818.        progname, paragraph_start_indent,
  819.        fill_column, max_error_level, reference_warning_limit);
  820.   exit (FATAL);
  821. }
  822.  
  823. /* **************************************************************** */
  824. /*                                    */
  825. /*            Manipulating Lists                  */
  826. /*                                        */
  827. /* **************************************************************** */
  828.  
  829. typedef struct generic_list
  830. {
  831.   struct generic_list *next;
  832. }            GENERIC_LIST;
  833.  
  834. /* Reverse the chain of structures in LIST.  Output the new head
  835.    of the chain.  You should always assign the output value of this
  836.    function to something, or you will lose the chain. */
  837. GENERIC_LIST *
  838. reverse_list (list)
  839.      register GENERIC_LIST *list;
  840. {
  841.   register GENERIC_LIST *next;
  842.   register GENERIC_LIST *prev = (GENERIC_LIST *) NULL;
  843.  
  844.   while (list)
  845.     {
  846.       next = list->next;
  847.       list->next = prev;
  848.       prev = list;
  849.       list = next;
  850.     }
  851.   return (prev);
  852. }
  853.  
  854.  
  855. /* **************************************************************** */
  856. /*                                    */
  857. /*            Pushing and Popping Files               */
  858. /*                                    */
  859. /* **************************************************************** */
  860.  
  861. /* Find and load the file named FILENAME.  Return a pointer to
  862.    the loaded file, or NULL if it can't be loaded. */
  863. char *
  864. find_and_load (filename)
  865.      char *filename;
  866. {
  867.   struct stat fileinfo;
  868.   int file, n, i, count = 0;
  869.   char *result = (char *) NULL;
  870.  
  871.   if (stat (filename, &fileinfo) != 0)
  872.     goto error_exit;
  873.  
  874.   file = open (filename, O_RDONLY);
  875.   if (file < 0)
  876.     goto error_exit;
  877.  
  878.   /* Load the file. */
  879.   result = (char *)xmalloc (fileinfo.st_size);
  880.  
  881.   /* VMS stat lies about the st_size value.  The actual number of
  882.      readable bytes is always less than this value.  The arcane
  883.      mysteries of VMS/RMS are too much to probe, so this hack
  884.     suffices to make things work. */
  885. #if defined (VMS)
  886.   while ((n = read (file, result+count, fileinfo.st_size)) > 0)
  887.     count += n;
  888.   if (n == -1)
  889. #else
  890.     count = fileinfo.st_size;
  891.     if (read (file, result, fileinfo.st_size) != fileinfo.st_size)
  892. #endif
  893.   error_exit:
  894.     {
  895.       if (result)
  896.     free (result);
  897.       if (file != -1)
  898.     close (file);
  899.       return ((char *) NULL);
  900.     }
  901.   close (file);
  902.  
  903.   /* Set the globals to the new file. */
  904.   input_text = result;
  905.   size_of_input_text = fileinfo.st_size;
  906.   input_filename = savestring (filename);
  907.   node_filename = savestring (filename);
  908.   input_text_offset = 0;
  909.   line_number = 1;
  910.   return (result);
  911. }
  912.  
  913. /* Save the state of the current input file. */
  914. pushfile ()
  915. {
  916.   FSTACK *newstack = (FSTACK *) xmalloc (sizeof (FSTACK));
  917.   newstack->filename = input_filename;
  918.   newstack->text = input_text;
  919.   newstack->size = size_of_input_text;
  920.   newstack->offset = input_text_offset;
  921.   newstack->line_number = line_number;
  922.   newstack->next = filestack;
  923.  
  924.   filestack = newstack;
  925.   push_node_filename ();
  926. }
  927.  
  928. /* Make the current file globals be what is on top of the file stack. */
  929. popfile ()
  930. {
  931.   extern int executing_string;
  932.   FSTACK *temp = filestack;
  933.  
  934.   if (!filestack)
  935.     abort ();            /* My fault.  I wonder what I did? */
  936.  
  937.   /* Make sure that commands with braces have been satisfied. */
  938.   if (!executing_string)
  939.     discard_braces ();
  940.  
  941.   /* Get the top of the stack into the globals. */
  942.   input_filename = filestack->filename;
  943.   input_text = filestack->text;
  944.   size_of_input_text = filestack->size;
  945.   input_text_offset = filestack->offset;
  946.   line_number = filestack->line_number;
  947.  
  948.   /* Pop the stack. */
  949.   filestack = filestack->next;
  950.   free (temp);
  951.   pop_node_filename ();
  952. }
  953.  
  954. /* Flush all open files on the file stack. */
  955. flush_file_stack ()
  956. {
  957.   while (filestack)
  958.     {
  959.       free (input_filename);
  960.       free (input_text);
  961.       popfile ();
  962.     }
  963. }
  964.  
  965. int node_filename_stack_index = 0;
  966. int node_filename_stack_size = 0;
  967. char **node_filename_stack = (char **)NULL;
  968.  
  969. push_node_filename ()
  970. {
  971.   if (node_filename_stack_index + 1 > node_filename_stack_size)
  972.     {
  973.       if (!node_filename_stack)
  974.     node_filename_stack =
  975.       (char **)xmalloc ((node_filename_stack_size += 10)
  976.                 * sizeof (char *));
  977.       else
  978.     node_filename_stack =
  979.       (char **)xrealloc (node_filename_stack,
  980.                  (node_filename_stack_size + 10)
  981.                  * sizeof (char *));
  982.     }
  983.  
  984.   node_filename_stack[node_filename_stack_index] = node_filename;
  985.   node_filename_stack_index++;
  986. }
  987.  
  988. pop_node_filename ()
  989. {
  990.   node_filename = node_filename_stack[--node_filename_stack_index];
  991. }
  992.  
  993. /* Return just the simple part of the filename; i.e. the
  994.    filename without the path information, or extensions.
  995.    This conses up a new string. */
  996. char *
  997. filename_part (filename)
  998.      char *filename;
  999. {
  1000.   register int i = strlen (filename) - 1;
  1001.  
  1002.   while (i && filename[i] != '/')
  1003.     i--;
  1004.   if (filename[i] == '/')
  1005.     i++;
  1006.  
  1007. #if defined (REMOVE_OUTPUT_EXTENSIONS)
  1008.   result = savestring (&filename[i]);
  1009.  
  1010.   /* See if there is an extension to remove.  If so, remove it. */
  1011.   if (rindex (result, '.'))
  1012.     *(rindex (result, '.')) = '\0';
  1013.   return (result);
  1014. #else
  1015.   return (savestring (&filename[i]));
  1016. #endif /* REMOVE_OUTPUT_EXTENSIONS */
  1017. }
  1018.  
  1019. /* Return the pathname part of filename.  This can be NULL. */
  1020. char *
  1021. pathname_part (filename)
  1022.      char *filename;
  1023. {
  1024.   char *expand_filename ();
  1025.   char *result = (char *) NULL;
  1026.   register int i;
  1027.  
  1028.   filename = expand_filename (filename, "");
  1029.  
  1030.   i = strlen (filename) - 1;
  1031.  
  1032.   while (i && filename[i] != '/')
  1033.     i--;
  1034.   if (filename[i] == '/')
  1035.     i++;
  1036.  
  1037.   if (i)
  1038.     {
  1039.       result = (char *)xmalloc (1 + i);
  1040.       strncpy (result, filename, i);
  1041.       result[i] = '\0';
  1042.     }
  1043.   free (filename);
  1044.   return (result);
  1045. }
  1046.  
  1047. /* Return the expansion of FILENAME. (the definition of "expansion"
  1048.    here is rather convoluted, isn't it?) */
  1049. char *
  1050. expand_filename (filename, input_name)
  1051.      char *filename, *input_name;
  1052. {
  1053.   char *full_pathname ();
  1054.   filename = full_pathname (filename);
  1055.  
  1056.   if (filename[0] == '.')
  1057.     return (filename);
  1058.  
  1059.   if (filename[0] != '/' && input_name[0] == '/')
  1060.     {
  1061.       /* Make it so that relative names work. */
  1062.       char *result;
  1063.       int i = strlen (input_name) - 1;
  1064.  
  1065.       result = (char *)xmalloc (1 + strlen (input_name) + strlen (filename));
  1066.       strcpy (result, input_name);
  1067.  
  1068.       while (result[i] != '/' && i)
  1069.     i--;
  1070.  
  1071.       if (result[i] == '/')
  1072.     i++;
  1073.  
  1074.       strcpy (&result[i], filename);
  1075.       free (filename);
  1076.       return (result);
  1077.     }
  1078.   return (filename);
  1079. }
  1080.  
  1081. /* Return the full path to FILENAME. (actually, all this does is
  1082.    expand any leading '~'.  The name is misleading.) */
  1083. char *
  1084. full_pathname (filename)
  1085.      char *filename;
  1086. {
  1087.   int initial_character;
  1088.  
  1089.   if (filename && ((initial_character = *filename) != NULL))
  1090.     {
  1091.       if (initial_character == '/')
  1092.     return (savestring (filename));
  1093.       if (initial_character != '~')
  1094.     {
  1095.       return (savestring (filename));
  1096.     }
  1097.       else
  1098.     {
  1099.       if (filename[1] == '/')
  1100.         {
  1101.           /* Return the concatenation of HOME and the rest of the string. */
  1102.           char *temp_home;
  1103.           char *temp_name;
  1104.  
  1105.           temp_home = (char *) getenv ("HOME");
  1106.           temp_name = (char *)xmalloc (strlen (&filename[2])
  1107.                        + 1
  1108.                        + temp_home ? strlen (temp_home)
  1109.                        : 0);
  1110.           if (temp_home)
  1111.         strcpy (temp_name, temp_home);
  1112.  
  1113.           strcat (temp_name, &filename[2]);
  1114.           return (temp_name);
  1115.         }
  1116.       else
  1117.         {
  1118.           struct passwd *user_entry;
  1119.           int i, c;
  1120.           char *username = (char *)xmalloc (257);
  1121.           char *temp_name;
  1122.  
  1123.           for (i = 1; c = filename[i]; i++)
  1124.         {
  1125.           if (c == '/')
  1126.             break;
  1127.           else
  1128.             username[i - 1] = c;
  1129.         }
  1130.           if (c)
  1131.         username[i - 1] = '\0';
  1132.  
  1133.           user_entry = getpwnam (username);
  1134.  
  1135.           if (!user_entry)
  1136.         return (savestring (filename));
  1137.  
  1138.           temp_name = (char *)xmalloc (1 + strlen (user_entry->pw_dir)
  1139.                        + strlen (&filename[i]));
  1140.           strcpy (temp_name, user_entry->pw_dir);
  1141.           strcat (temp_name, &filename[i]);
  1142.           return (temp_name);
  1143.         }
  1144.     }
  1145.     }
  1146.   else
  1147.     {
  1148.       return (savestring (filename));
  1149.     }
  1150. }
  1151.  
  1152. /* **************************************************************** */
  1153. /*                                    */
  1154. /*            Error Handling                    */
  1155. /*                                    */
  1156. /* **************************************************************** */
  1157.  
  1158. /* Number of errors encountered. */
  1159. int errors_printed = 0;
  1160.  
  1161. /* Print the last error gotten from the file system. */
  1162. fs_error (filename)
  1163.      char *filename;
  1164. {
  1165.   perror (filename);
  1166.   return ((int) false);
  1167. }
  1168.  
  1169. /* Print an error message, and return false. */
  1170. error (format, arg1, arg2, arg3, arg4, arg5)
  1171.      char *format;
  1172. {
  1173.   remember_error ();
  1174.   fprintf (stderr, format, arg1, arg2, arg3, arg4, arg5);
  1175.   fprintf (stderr, "\n");
  1176.   return ((int) false);
  1177. }
  1178.  
  1179. /* Just like error (), but print the line number as well. */
  1180. line_error (format, arg1, arg2, arg3, arg4, arg5)
  1181.      char *format;
  1182. {
  1183.   remember_error ();
  1184.   fprintf (stderr, "%s:%d: ", input_filename, line_number);
  1185.   fprintf (stderr, format, arg1, arg2, arg3, arg4, arg5);
  1186.   fprintf (stderr, ".\n");
  1187.   return ((int) false);
  1188. }
  1189.  
  1190. warning (format, arg1, arg2, arg3, arg4, arg5)
  1191.      char *format;
  1192. {
  1193.   if (print_warnings)
  1194.     {
  1195.       fprintf (stderr, "%s:%d: Warning: ", input_filename, line_number);
  1196.       fprintf (stderr, format, arg1, arg2, arg3, arg4, arg5);
  1197.       fprintf (stderr, ".\n");
  1198.     }
  1199.   return ((int) false);
  1200. }
  1201.  
  1202. /* Remember that an error has been printed.  If this is the first
  1203.    error printed, then tell them which program is printing them.
  1204.    If more than max_error_level have been printed, then exit the
  1205.    program. */
  1206. remember_error ()
  1207. {
  1208.   errors_printed++;
  1209.   if (max_error_level && (errors_printed > max_error_level))
  1210.     {
  1211.       fprintf (stderr, "Too many errors!  Gave up.\n");
  1212.       flush_file_stack ();
  1213.       cm_bye ();
  1214.       exit (1);
  1215.     }
  1216. }
  1217.  
  1218.  
  1219. /* **************************************************************** */
  1220. /*                                    */
  1221. /*            Hacking Tokens and Strings            */
  1222. /*                                    */
  1223. /* **************************************************************** */
  1224.  
  1225. /* Return the next token as a string pointer.  We cons the
  1226.    string. */
  1227. char *
  1228. read_token ()
  1229. {
  1230.   int i, character;
  1231.   char *result;
  1232.  
  1233.   /* Hack special case.  If the first character to be read is
  1234.      self-delimiting, then that is the command itself. */
  1235.  
  1236.   character = curchar ();
  1237.   if (self_delimiting (character))
  1238.     {
  1239.       input_text_offset++;
  1240.       result = savestring (" ");
  1241.       *result = character;
  1242.       return (result);
  1243.     }
  1244.  
  1245.   for (i = 0; ((input_text_offset != size_of_input_text)
  1246.            && (character = curchar ())
  1247.            && command_char (character));
  1248.        i++, input_text_offset++);
  1249.   result = (char *)xmalloc (i + 1);
  1250.   strncpy (result, &input_text[input_text_offset - i], i);
  1251.   result[i] = '\0';
  1252.   return (result);
  1253. }
  1254.  
  1255. /* Return TRUE if CHARACTER is self-delimiting. */
  1256. boolean
  1257. self_delimiting (character)
  1258.      int character;
  1259. {
  1260.   return (member (character, "{}:.@*'`,!?; \n"));
  1261. }
  1262.  
  1263. /* Clear whitespace from the front and end of string. */
  1264. canon_white (string)
  1265.      char *string;
  1266. {
  1267.   int len = strlen (string);
  1268.   int x;
  1269.  
  1270.   if (!len)
  1271.     return;
  1272.  
  1273.   for (x = 0; x < len; x++)
  1274.     {
  1275.       if (!whitespace (string[x]))
  1276.     {
  1277.       strcpy (string, string + x);
  1278.       break;
  1279.     }
  1280.     }
  1281.   len = strlen (string);
  1282.   if (len)
  1283.     len--;
  1284.   while (len > -1 && cr_or_whitespace (string[len]))
  1285.     len--;
  1286.   string[len + 1] = '\0';
  1287. }
  1288.  
  1289. /* Bash STRING, replacing all whitespace with just one space. */
  1290. fix_whitespace (string)
  1291.      char *string;
  1292. {
  1293.   char *temp = (char *)xmalloc (strlen (string) + 1);
  1294.   int string_index = 0;
  1295.   int temp_index = 0;
  1296.   int c;
  1297.  
  1298.   canon_white (string);
  1299.  
  1300.   while (string[string_index])
  1301.     {
  1302.       c = temp[temp_index++] = string[string_index++];
  1303.  
  1304.       if (c == ' ' || c == '\n' || c == '\t')
  1305.     {
  1306.       temp[temp_index - 1] = ' ';
  1307.       while ((c = string[string_index]) && (c == ' ' ||
  1308.                         c == '\t' ||
  1309.                         c == '\n'))
  1310.         string_index++;
  1311.     }
  1312.     }
  1313.   temp[temp_index] = '\0';
  1314.   strcpy (string, temp);
  1315.   free (temp);
  1316. }
  1317.  
  1318. /* Discard text until the desired string is found.  The string is
  1319.    included in the discarded text. */
  1320. discard_until (string)
  1321.      char *string;
  1322. {
  1323.   int temp = search_forward (string, input_text_offset);
  1324.  
  1325.   int tt = (temp < 0) ? size_of_input_text : temp + strlen (string);
  1326.   int from = input_text_offset;
  1327.  
  1328.   /* Find out what line we are on. */
  1329.   while (from != tt)
  1330.     if (input_text[from++] == '\n')
  1331.       line_number++;
  1332.  
  1333.   if (temp < 0)
  1334.     {
  1335.       input_text_offset = size_of_input_text - strlen (string);
  1336.  
  1337.       if (strcmp (string, "\n") != 0)
  1338.     {
  1339.       line_error ("Expected `%s'", string);
  1340.       return;
  1341.     }
  1342.     }
  1343.   else
  1344.     input_text_offset = temp;
  1345.  
  1346.   input_text_offset += strlen (string);
  1347. }
  1348.  
  1349. /* Read characters from the file until we are at MATCH.
  1350.    Place the characters read into STRING.
  1351.    On exit input_text_offset is after the match string.
  1352.    Return the length of STRING. */
  1353. get_until (match, string)
  1354.      char *match, **string;
  1355. {
  1356.   int len, current_point, x, new_point;
  1357.  
  1358.   current_point = x = input_text_offset;
  1359.   new_point = search_forward (match, input_text_offset);
  1360.  
  1361.   if (new_point < 0)
  1362.     new_point = size_of_input_text;
  1363.   len = new_point - current_point;
  1364.  
  1365.   /* Keep track of which line number we are at. */
  1366.   while (x != new_point)
  1367.     if (input_text[x++] == '\n')
  1368.       line_number++;
  1369.  
  1370.   *string = (char *)xmalloc (len + 1);
  1371.  
  1372.   strncpy (*string, &input_text[current_point], len);
  1373.   (*string)[len] = '\0';
  1374.  
  1375.   /* Now leave input_text_offset in a consistent state. */
  1376.   input_text_offset = new_point + (strlen (match) - 1);
  1377.  
  1378.   if (input_text_offset > size_of_input_text)
  1379.     input_text_offset = size_of_input_text;
  1380. }
  1381.  
  1382. /* Read characters from the file until we are at MATCH or end of line.
  1383.    Place the characters read into STRING.  */
  1384. get_until_in_line (match, string)
  1385.      char *match, **string;
  1386. {
  1387.   int real_bottom = size_of_input_text;
  1388.   int temp = search_forward ("\n", input_text_offset);
  1389.   if (temp < 0)
  1390.     temp = size_of_input_text;
  1391.   size_of_input_text = temp;
  1392.   get_until (match, string);
  1393.   size_of_input_text = real_bottom;
  1394. }
  1395.  
  1396. get_rest_of_line (string)
  1397.      char **string;
  1398. {
  1399.   get_until ("\n", string);
  1400.   canon_white (*string);
  1401.   if (curchar () == '\n')    /* as opposed to the end of the file... */
  1402.     {
  1403.       line_number++;
  1404.       input_text_offset++;
  1405.     }
  1406. }
  1407.  
  1408. /* Backup the input pointer to the previous character, keeping track
  1409.    of the current line number. */
  1410. backup_input_pointer ()
  1411. {
  1412.   if (input_text_offset)
  1413.     {
  1414.       input_text_offset--;
  1415.       if (curchar () == '\n')
  1416.     line_number--;
  1417.     }
  1418. }
  1419.  
  1420. /* Read characters from the file until we are at MATCH or closing brace.
  1421.    Place the characters read into STRING.  */
  1422. get_until_in_braces (match, string)
  1423.      char *match, **string;
  1424. {
  1425.   int i, brace = 0;
  1426.   int match_len = strlen (match);
  1427.   char *temp;
  1428.  
  1429.   for (i = input_text_offset; i < size_of_input_text; i++)
  1430.     {
  1431.       if (input_text[i] == '{')
  1432.     brace++;
  1433.       else if (input_text[i] == '}')
  1434.     brace--;
  1435.       else if (input_text[i] == '\n')
  1436.     line_number++;
  1437.  
  1438.       if (brace < 0 ||
  1439.       (brace == 0 && strncmp (input_text + i, match, match_len) == 0))
  1440.     break;
  1441.     }
  1442.  
  1443.   match_len = i - input_text_offset;
  1444.   temp = (char *)xmalloc (2 + match_len);
  1445.   strncpy (temp, input_text + input_text_offset, match_len);
  1446.   temp[match_len] = '\0';
  1447.   input_text_offset = i;
  1448.   *string = temp;
  1449. }
  1450.  
  1451. /* **************************************************************** */
  1452. /*                                    */
  1453. /*            Converting the File                 */
  1454. /*                                    */
  1455. /* **************************************************************** */
  1456.  
  1457. /* Convert the file named by NAME.  The output is saved on the file
  1458.    named as the argument to the @setfilename command. */
  1459. static char *suffixes[] = {
  1460.   "",
  1461.   ".texinfo",
  1462.   ".texi",
  1463.   ".txinfo",
  1464.   (char *)NULL
  1465. };
  1466.  
  1467. convert (name)
  1468.      char *name;
  1469. {
  1470.   char *real_output_filename, *expand_filename (), *filename_part ();
  1471.   char *filename = (char *)xmalloc (strlen (name) + 50);
  1472.   register int i;
  1473.  
  1474.   init_tag_table ();
  1475.   init_indices ();
  1476.   init_internals ();
  1477.   init_paragraph ();
  1478.  
  1479.   /* Try to load the file specified by NAME.  If the file isn't found, and
  1480.      there is no suffix in NAME, then try NAME.texinfo, and NAME.texi. */
  1481.   for (i = 0; suffixes[i]; i++)
  1482.     {
  1483.       strcpy (filename, name);
  1484.       strcat (filename, suffixes[i]);
  1485.  
  1486.       if (find_and_load (filename))
  1487.     break;
  1488.  
  1489.       if (!suffixes[i][0] && rindex (filename, '.'))
  1490.     {
  1491.       fs_error (filename);
  1492.       free (filename);
  1493.       return;
  1494.     }
  1495.     }
  1496.  
  1497.   if (!suffixes[i])
  1498.     {
  1499.       fs_error (name);
  1500.       free (filename);
  1501.       return;
  1502.     }
  1503.  
  1504.   input_filename = filename;
  1505.  
  1506.   /* Search this file looking for the special string which starts conversion.
  1507.      Once found, we may truly begin. */
  1508.  
  1509.   input_text_offset = search_forward ("@setfilename", 0);
  1510.   if (input_text_offset < 0)
  1511.     {
  1512.       error ("No `@setfilename' found in `%s'", name);
  1513.       goto finished;
  1514.     }
  1515.   else
  1516.     input_text_offset += strlen ("@setfilename");
  1517.  
  1518.   if (output_filename == NULL)
  1519.     {
  1520.       get_until ("\n", &output_filename);
  1521.       canon_white (output_filename);
  1522.     }
  1523.  
  1524.   real_output_filename = output_filename;
  1525.  
  1526.   printf ("Making info file `%s' from `%s'.\n", output_filename, name);
  1527.  
  1528.   if (verbose_mode)
  1529.     fprintf (stderr, "  The input file contains %d characters.\n",
  1530.          size_of_input_text);
  1531.  
  1532.   output_stream = fopen (real_output_filename, "w");
  1533.   if (output_stream == NULL)
  1534.     {
  1535.       fs_error (real_output_filename);
  1536.       goto finished;
  1537.     }
  1538.  
  1539.   /* Make the displayable filename from output_filename.  Only the root
  1540.      portion of the filename need be displayed. */
  1541.   pretty_output_filename = filename_part (output_filename);
  1542.  
  1543.   /* For this file only, count the number of newlines from the top of
  1544.      the file to here.  This way, we keep track of line numbers for
  1545.      error reporting.  Line_number starts at 1, since the user isn't
  1546.      zero-based. */
  1547.   {
  1548.     int temp = 0;
  1549.     line_number = 1;
  1550.     while (temp != input_text_offset)
  1551.       if (input_text[temp++] == '\n')
  1552.     line_number++;
  1553.   }
  1554.  
  1555.   add_word_args ("Info file %s, produced by Makeinfo, -*- Text -*-\n\
  1556. from input file %s.\n", output_filename, input_filename);
  1557.   close_paragraph ();
  1558.  
  1559.   reader_loop ();
  1560.  
  1561. finished:
  1562.   close_paragraph ();
  1563.   flush_file_stack ();
  1564.   if (output_stream != NULL)
  1565.     {
  1566.       output_pending_notes ();
  1567.       free_pending_notes ();
  1568.       if (tag_table != NULL)
  1569.     {
  1570.       tag_table = (TAG_ENTRY *) reverse_list (tag_table);
  1571.       write_tag_table ();
  1572.     }
  1573.  
  1574.       fclose (output_stream);
  1575.  
  1576.       /* If validating, then validate the entire file right now. */
  1577.       if (validating)
  1578.     validate_file (real_output_filename, tag_table);
  1579.  
  1580.       /* This used to test  && !errors_printed.
  1581.      But some files might have legit warnings.  So split anyway.  */
  1582.       if (splitting)
  1583.     split_file (real_output_filename, 0);
  1584.     }
  1585. }
  1586.  
  1587. free_and_clear (pointer)
  1588.      char **pointer;
  1589. {
  1590.   if ((*pointer) != (char *) NULL)
  1591.     {
  1592.       free (*pointer);
  1593.       *pointer = (char *) NULL;
  1594.     }
  1595. }
  1596.  
  1597.  /* Initialize some state. */
  1598. init_internals ()
  1599. {
  1600.   free_and_clear (¤t_node);
  1601.   free_and_clear (&command);
  1602.   free_and_clear (&input_filename);
  1603.   free_node_references ();
  1604.   init_insertion_stack ();
  1605.   init_brace_stack ();
  1606.   command_index = 0;
  1607.   in_menu = 0;
  1608. }
  1609.  
  1610. init_paragraph ()
  1611. {
  1612.   free_and_clear (&output_paragraph);
  1613.   output_paragraph = xmalloc (paragraph_buffer_len);
  1614.   output_position = 0;
  1615.   output_paragraph[0] = '\0';
  1616.   output_paragraph_offset = 0;
  1617.   output_column = 0;
  1618.   paragraph_is_open = false;
  1619.   current_indent = 0;
  1620. }
  1621.  
  1622. /* Okay, we are ready to start the conversion.  Call the reader on
  1623.    some text, and fill the text as it is output.  Handle commands by
  1624.    remembering things like open braces and the current file position on a
  1625.    stack, and when the corresponding close brace is found, you can call
  1626.    the function with the proper arguments. */
  1627. reader_loop ()
  1628. {
  1629.   int character;
  1630.   boolean done = false;
  1631.   int dash_count = 0;
  1632.  
  1633.   while (!done)
  1634.     {
  1635.       if (input_text_offset >= size_of_input_text)
  1636.     {
  1637.       if (filestack)
  1638.         {
  1639.           free (input_filename);
  1640.           free (input_text);
  1641.           popfile ();
  1642.         }
  1643.       else
  1644.         break;
  1645.     }
  1646.  
  1647.       character = curchar ();
  1648.  
  1649.       if (!in_fixed_width_font &&
  1650.       (character == '\'' || character == '`') &&
  1651.       input_text[input_text_offset + 1] == character)
  1652.     {
  1653.       input_text_offset++;
  1654.       character = '"';
  1655.     }
  1656.  
  1657.       if (character == '-')
  1658.     {
  1659.       dash_count++;
  1660.       if (dash_count == 3 && !in_fixed_width_font)
  1661.         {
  1662.           input_text_offset++;
  1663.           continue;
  1664.         }
  1665.     }
  1666.       else
  1667.     {
  1668.       dash_count = 0;
  1669.     }
  1670.  
  1671.       /* If this is a whitespace character, then check to see if the line
  1672.      is blank.  If so, advance to the carriage return. */
  1673.       if (whitespace (character))
  1674.     {
  1675.       register int i = input_text_offset + 1;
  1676.  
  1677.       while (i < size_of_input_text && whitespace (input_text[i]))
  1678.         i++;
  1679.  
  1680.       if (i == size_of_input_text || input_text[i] == '\n')
  1681.         {
  1682.           if (i == size_of_input_text)
  1683.         i--;
  1684.  
  1685.           input_text_offset = i;
  1686.           character = curchar ();
  1687.         }
  1688.     }
  1689.       
  1690.       if (character == '\n')
  1691.     {
  1692.       line_number++;
  1693.       if (in_menu && input_text_offset + 1 < size_of_input_text)
  1694.         {
  1695.           char *glean_node_from_menu (), *tem;
  1696.  
  1697.           /* Note that the value of TEM is discarded, since it is
  1698.          gauranteed to be NULL when glean_node_from_menu () is
  1699.          called with a non-zero argument. */
  1700.           tem = glean_node_from_menu (1);
  1701.         }
  1702.     }
  1703.  
  1704.       switch (character)
  1705.     {
  1706.     case COMMAND_PREFIX:
  1707.       read_command ();
  1708.       if (strcmp (command, "bye") == 0)
  1709.         {
  1710.           done = true;
  1711.           continue;
  1712.         }
  1713.       break;
  1714.  
  1715.     case '{':
  1716.  
  1717.       /* Special case.  I'm not supposed to see this character by itself.
  1718.          If I do, it means there is a syntax error in the input text.
  1719.          Report the error here, but remember this brace on the stack so
  1720.          you can ignore its partner. */
  1721.  
  1722.       line_error ("Misplaced `{'");
  1723.       remember_brace (misplaced_brace);
  1724.  
  1725.       /* Don't advance input_text_offset since this happens in
  1726.          remember_brace ().
  1727.          input_text_offset++;
  1728.            */
  1729.       break;
  1730.  
  1731.     case '}':
  1732.       pop_and_call_brace ();
  1733.       input_text_offset++;
  1734.       break;
  1735.  
  1736.     default:
  1737.       add_char (character);
  1738.       input_text_offset++;
  1739.     }
  1740.     }
  1741. }
  1742.  
  1743. /* Find the command corresponding to STRING.  If the command
  1744.    is found, return a pointer to the data structure.  Otherwise
  1745.    return (-1). */
  1746. COMMAND *
  1747. get_command_entry (string)
  1748.      char *string;
  1749. {
  1750.   register int i;
  1751.  
  1752.   for (i = 0; CommandTable[i].name; i++)
  1753.     if (strcmp (CommandTable[i].name, string) == 0)
  1754.       return (&CommandTable[i]);
  1755.  
  1756.   /* This command is not in our predefined command table.  Perhaps
  1757.      it is a user defined command. */
  1758.   for (i = 0; i < user_command_array_len; i++)
  1759.     if (user_command_array[i] &&
  1760.     (strcmp (user_command_array[i]->name, string) == 0))
  1761.       return (user_command_array[i]);
  1762.  
  1763.   /* Nope, we never heard of this command. */
  1764.   return ((COMMAND *) -1);
  1765. }
  1766.  
  1767. /* input_text_offset is right at the command prefix character.
  1768.    Read the next token to determine what to do. */
  1769. read_command ()
  1770. {
  1771.   COMMAND *entry;
  1772.   input_text_offset++;
  1773.   free_and_clear (&command);
  1774.   command = read_token ();
  1775.  
  1776.   entry = get_command_entry (command);
  1777.  
  1778.   if ((int) entry == -1)
  1779.     {
  1780.       line_error ("Unknown info command `%s'", command);
  1781.       return;
  1782.     }
  1783.  
  1784.   if (entry->argument_in_braces)
  1785.     remember_brace (entry->proc);
  1786.  
  1787.   (*(entry->proc)) (START);
  1788. }
  1789.  
  1790. /* Return the string which invokes PROC; a pointer to a function. */
  1791. char *
  1792. find_proc_name (proc)
  1793.      FUNCTION *proc;
  1794. {
  1795.   register int i;
  1796.  
  1797.   for (i = 0; CommandTable[i].name; i++)
  1798.     if (proc == CommandTable[i].proc)
  1799.       return (CommandTable[i].name);
  1800.   return ("NO_NAME!");
  1801. }
  1802.  
  1803. init_brace_stack ()
  1804. {
  1805.   brace_stack = (BRACE_ELEMENT *) NULL;
  1806. }
  1807.  
  1808. remember_brace (proc)
  1809.      FUNCTION *proc;
  1810. {
  1811.   if (curchar () != '{')
  1812.     line_error ("@%s expected `{..}'", command);
  1813.   else
  1814.     input_text_offset++;
  1815.   remember_brace_1 (proc, output_paragraph_offset);
  1816. }
  1817.  
  1818. /* Remember the current output position here.  Save PROC
  1819.    along with it so you can call it later. */
  1820. remember_brace_1 (proc, position)
  1821.      FUNCTION *proc;
  1822.      int position;
  1823. {
  1824.   BRACE_ELEMENT *new = (BRACE_ELEMENT *) xmalloc (sizeof (BRACE_ELEMENT));
  1825.   new->next = brace_stack;
  1826.   new->proc = proc;
  1827.   new->pos = position;
  1828.   new->line = line_number;
  1829.   brace_stack = new;
  1830. }
  1831.  
  1832. /* Pop the top of the brace stack, and call the associated function
  1833.    with the args END and POS. */
  1834. pop_and_call_brace ()
  1835. {
  1836.   BRACE_ELEMENT *temp;
  1837.   FUNCTION *proc;
  1838.   int pos;
  1839.  
  1840.   if (brace_stack == (BRACE_ELEMENT *) NULL)
  1841.     return (line_error ("Unmatched close bracket"));
  1842.  
  1843.   pos = brace_stack->pos;
  1844.   proc = brace_stack->proc;
  1845.   temp = brace_stack->next;
  1846.   free (brace_stack);
  1847.   brace_stack = temp;
  1848.  
  1849.   return ((*proc) (END, pos, output_paragraph_offset));
  1850. }
  1851.  
  1852. /* You call discard_braces () when you shouldn't have any braces on the stack.
  1853.    I used to think that this happens for commands that don't take arguments
  1854.    in braces, but that was wrong because of things like @code{foo @@}.  So now
  1855.    I only detect it at the beginning of nodes. */
  1856. discard_braces ()
  1857. {
  1858.   int temp_line_number = line_number;
  1859.   char *proc_name;
  1860.  
  1861.   if (!brace_stack)
  1862.     return;
  1863.  
  1864.   while (brace_stack)
  1865.     {
  1866.       line_number = brace_stack->line;
  1867.       proc_name = find_proc_name (brace_stack->proc);
  1868.       line_error ("@%s missing close brace", proc_name);
  1869.       line_number = temp_line_number;
  1870.       pop_and_call_brace ();
  1871.     }
  1872. }
  1873.  
  1874. get_char_len (character)
  1875.      int character;
  1876. {
  1877.   /* Return the printed length of the character. */
  1878.   int len;
  1879.  
  1880.   switch (character)
  1881.     {
  1882.     case '\t':
  1883.       len = (output_column + 8) & 0xf7;
  1884.       if (len > fill_column)
  1885.     len = fill_column - output_column;
  1886.       else
  1887.     len = len - output_column;
  1888.       break;
  1889.  
  1890.     case '\n':
  1891.       len = fill_column - output_column;
  1892.       break;
  1893.  
  1894.     default:
  1895.       if (character < ' ')
  1896.     len = 2;
  1897.       else
  1898.     len = 1;
  1899.     }
  1900.   return (len);
  1901. }
  1902.  
  1903. add_word_args (format, arg1, arg2, arg3, arg4, arg5)
  1904.      char *format;
  1905. {
  1906.   char buffer[1000];
  1907.   sprintf (buffer, format, arg1, arg2, arg3, arg4, arg5);
  1908.   add_word (buffer);
  1909. }
  1910.  
  1911. /* Add STRING to output_paragraph. */
  1912. add_word (string)
  1913.      char *string;
  1914. {
  1915.   while (*string)
  1916.     add_char (*string++);
  1917. }
  1918.  
  1919. boolean last_char_was_newline = true;
  1920. int last_inserted_character = 0;
  1921.  
  1922. /* Add the character to the current paragraph.  If filling_enabled is
  1923.    true, then do filling as well. */
  1924. add_char (character)
  1925.      int character;
  1926. {
  1927.   extern int must_start_paragraph;
  1928.  
  1929.   /* If we are adding a character now, then we don't have to
  1930.      ignore close_paragraph () calls any more. */
  1931.   if (must_start_paragraph)
  1932.     {
  1933.       must_start_paragraph = 0;
  1934.       if (current_indent > output_column)
  1935.     {
  1936.       indent (current_indent - output_column);
  1937.       output_column = current_indent;
  1938.     }
  1939.     }
  1940.  
  1941.   if (non_splitting_words && member (character, " \t\n"))
  1942.     character = ' ' | 0x80;
  1943.  
  1944.   switch (character)
  1945.     {
  1946.     case '\n':
  1947.       if (!filling_enabled)
  1948.     {
  1949.       insert ('\n');
  1950.  
  1951.       if (force_flush_right)
  1952.         {
  1953.           close_paragraph ();
  1954.           /* Hack to force single blank lines out in this mode. */
  1955.           flush_output ();
  1956.         }
  1957.  
  1958.       output_column = 0;
  1959.  
  1960.       if (!no_indent && paragraph_is_open)
  1961.         indent (output_column = current_indent);
  1962.       break;
  1963.     }
  1964.       else
  1965.     {
  1966.       if (sentence_ender (last_inserted_character))
  1967.         {
  1968.           insert (' ');
  1969.           output_column++;
  1970.           last_inserted_character = character;
  1971.         }
  1972.     }
  1973.  
  1974.       if (last_char_was_newline)
  1975.     {
  1976.       close_paragraph ();
  1977.       pending_indent = 0;
  1978.     }
  1979.       else
  1980.     {
  1981.       last_char_was_newline = true;
  1982.       insert (' ');
  1983.       output_column++;
  1984.     }
  1985.       break;
  1986.  
  1987.     default:
  1988.       {
  1989.     int len = get_char_len (character);
  1990.  
  1991.     if ((character == ' ') && (last_char_was_newline))
  1992.       {
  1993.         if (!paragraph_is_open)
  1994.           {
  1995.         pending_indent++;
  1996.         return;
  1997.           }
  1998.       }
  1999.  
  2000.     if (!paragraph_is_open)
  2001.       {
  2002.         start_paragraph ();
  2003.  
  2004.         /* If the paragraph is supposed to be indented a certain way,
  2005.            then discard all of the pending whitespace.  Otherwise, we
  2006.            let the whitespace stay. */
  2007.         if (!paragraph_start_indent)
  2008.           indent (pending_indent);
  2009.         pending_indent = 0;
  2010.       }
  2011.  
  2012.     if ((output_column += len) >= fill_column)
  2013.       {
  2014.         if (filling_enabled)
  2015.           {
  2016.         int temp = output_paragraph_offset;
  2017.         while (--temp > 0 && output_paragraph[temp] != '\n')
  2018.           {
  2019.             if (output_paragraph[temp] == ' ')
  2020.               {
  2021.             output_paragraph[temp++] = '\n';
  2022.  
  2023.             /* We have correctly broken the line where we want
  2024.                to.  What we don't want is spaces following where
  2025.                we have decided to break the line.  We get rid of
  2026.                them. */
  2027.             {
  2028.               int t1 = temp;
  2029.               while (t1 < output_paragraph_offset
  2030.                  && whitespace (output_paragraph[t1]))
  2031.                 t1++;
  2032.  
  2033.               if (t1 != temp)
  2034.                 {
  2035.                   strncpy ((char *) &output_paragraph[temp],
  2036.                        (char *) &output_paragraph[t1],
  2037.                        (output_paragraph_offset - t1));
  2038.                   output_paragraph_offset -= (t1 - temp);
  2039.                 }
  2040.             }
  2041.  
  2042.             /* Filled, but now indent if that is right. */
  2043.             if (indented_fill && current_indent)
  2044.               {
  2045.                 int buffer_len = ((output_paragraph_offset - temp)
  2046.                           + current_indent);
  2047.                 char *temp_buffer = (char *)xmalloc (buffer_len);
  2048.                 int indentation = 0;
  2049.  
  2050.                 /* We have to shift any markers that are in
  2051.                    front of the wrap point. */
  2052.                 {
  2053.                   register BRACE_ELEMENT *stack = brace_stack;
  2054.  
  2055.                   while (stack)
  2056.                 {
  2057.                   if (stack->pos > temp)
  2058.                     stack->pos += current_indent;
  2059.                   stack = stack->next;
  2060.                 }
  2061.                 }
  2062.  
  2063.                 while (current_indent > 0 &&
  2064.                    indentation != current_indent)
  2065.                   temp_buffer[indentation++] = ' ';
  2066.  
  2067.                 strncpy ((char *) &temp_buffer[current_indent],
  2068.                      (char *) &output_paragraph[temp],
  2069.                      buffer_len - current_indent);
  2070.  
  2071.                 if (output_paragraph_offset + buffer_len
  2072.                 >= paragraph_buffer_len)
  2073.                   {
  2074.                 unsigned char *tt = xrealloc
  2075.                   (output_paragraph,
  2076.                    (paragraph_buffer_len += buffer_len));
  2077.                 output_paragraph = tt;
  2078.                   }
  2079.                 strncpy ((char *) &output_paragraph[temp],
  2080.                      temp_buffer, buffer_len);
  2081.                 output_paragraph_offset += current_indent;
  2082.                 free (temp_buffer);
  2083.               }
  2084.             output_column = 0;
  2085.             while (temp < output_paragraph_offset)
  2086.               output_column +=
  2087.                 get_char_len (output_paragraph[temp++]);
  2088.             output_column += len;
  2089.             break;
  2090.               }
  2091.           }
  2092.           }
  2093.       }
  2094.     insert (character);
  2095.     last_char_was_newline = false;
  2096.     last_inserted_character = character;
  2097.       }
  2098.     }
  2099. }
  2100.  
  2101. /* Insert CHARACTER into OUTPUT_PARAGRAPH. */
  2102. insert (character)
  2103.      int character;
  2104. {
  2105.   output_paragraph[output_paragraph_offset++] = character;
  2106.   if (output_paragraph_offset == paragraph_buffer_len)
  2107.     {
  2108.       output_paragraph =
  2109.     xrealloc (output_paragraph, (paragraph_buffer_len += 100));
  2110.     }
  2111. }
  2112.  
  2113. /* Remove upto COUNT characters of whitespace from the
  2114.    the current output line.  If COUNT is less than zero,
  2115.    then remove until none left. */
  2116. kill_self_indent (count)
  2117.      int count;
  2118. {
  2119.   /* Handle infinite case first. */
  2120.   if (count < 0)
  2121.     {
  2122.       output_column = 0;
  2123.       while (output_paragraph_offset)
  2124.     {
  2125.       if (whitespace (output_paragraph[output_paragraph_offset - 1]))
  2126.         output_paragraph_offset--;
  2127.       else
  2128.         break;
  2129.     }
  2130.     }
  2131.   else
  2132.     {
  2133.       while (output_paragraph_offset && count--)
  2134.     if (whitespace (output_paragraph[output_paragraph_offset - 1]))
  2135.       output_paragraph_offset--;
  2136.     else
  2137.       break;
  2138.     }
  2139. }
  2140.  
  2141. flush_output ()
  2142. {
  2143.   register int i;
  2144.  
  2145.   if (!output_paragraph_offset)
  2146.     return;
  2147.  
  2148.   for (i = 0; i < output_paragraph_offset; i++)
  2149.     {
  2150.       if (output_paragraph[i] == (unsigned char)(' ' | 0x80) ||
  2151.       output_paragraph[i] == (unsigned char)('\t' | 0x80) ||
  2152.       output_paragraph[i] == (unsigned char)('\n' | 0x80))
  2153.     output_paragraph[i] &= 0x7f;
  2154.     }
  2155.  
  2156.   fwrite (output_paragraph, 1, output_paragraph_offset, output_stream);
  2157.   output_position += output_paragraph_offset;
  2158.   output_paragraph_offset = 0;
  2159. }
  2160.  
  2161. /* How to close a paragraph controlling the number of lines between
  2162.    this one and the last one. */
  2163.  
  2164. /* Paragraph spacing is controlled by this variable.  It is the number of
  2165.    blank lines that you wish to appear between paragraphs.  A value of
  2166.    1 creates a single blank line between paragraphs. */
  2167. int paragraph_spacing = 1;
  2168.  
  2169.  
  2170. /* Close the current paragraph, leaving no blank lines between them. */
  2171. close_single_paragraph ()
  2172. {
  2173.   close_paragraph_with_lines (0);
  2174. }
  2175.  
  2176. close_paragraph_with_lines (lines)
  2177.      int lines;
  2178. {
  2179.   int old_spacing = paragraph_spacing;
  2180.   paragraph_spacing = lines;
  2181.   close_paragraph ();
  2182.   paragraph_spacing = old_spacing;
  2183. }
  2184.  
  2185. /* Non-zero means that start_paragraph () MUST be called before we pay
  2186.    any attention to close_paragraph () calls. */
  2187. int must_start_paragraph = 0;
  2188.  
  2189. /* Close the currently open paragraph. */
  2190. close_paragraph ()
  2191. {
  2192.   register int i;
  2193.  
  2194.   if (paragraph_is_open && !must_start_paragraph)
  2195.     {
  2196.       /* Gobble up blank lines that are extra... */
  2197.       register int tindex = output_paragraph_offset;
  2198.       register int c;
  2199.       while (tindex &&
  2200.          ((c = output_paragraph[tindex - 1]) == ' ' || c == '\n'))
  2201.     output_paragraph[--tindex] = '\n';
  2202.  
  2203.       output_paragraph_offset = tindex;
  2204.  
  2205.       insert ('\n');
  2206.  
  2207.       if (!force_flush_right)
  2208.     {
  2209.       for (i = 0; i < paragraph_spacing; i++)
  2210.         insert ('\n');
  2211.     }
  2212.  
  2213.       /* If we are doing flush right indentation, then do it now
  2214.      on the paragraph (really a single line). */
  2215.       if (force_flush_right)
  2216.     {
  2217.       char *temp;
  2218.  
  2219.       kill_self_indent (-1);
  2220.  
  2221.       if (output_paragraph[0] != '\n')
  2222.         {
  2223.           output_paragraph[output_paragraph_offset] = '\0';
  2224.  
  2225.           if (output_paragraph_offset < fill_column)
  2226.         {
  2227.           if (fill_column >= paragraph_buffer_len)
  2228.             output_paragraph =
  2229.               xrealloc (output_paragraph,
  2230.                 (paragraph_buffer_len += fill_column));
  2231.  
  2232.           temp = savestring ((char *)output_paragraph);
  2233.  
  2234.           for (i = 0; i < fill_column - output_paragraph_offset; i++)
  2235.             output_paragraph[i] = ' ';
  2236.  
  2237.           sprintf ((char *) output_paragraph + i, "%s", temp);
  2238.           free (temp);
  2239.           output_paragraph_offset = fill_column;
  2240.         }
  2241.         }
  2242.     }
  2243.  
  2244.       flush_output ();
  2245.       paragraph_is_open = false;
  2246.       no_indent = false;
  2247.       output_column = 0;
  2248.     }
  2249.   ignore_blank_line ();
  2250. }
  2251.  
  2252. /* Make the last line just read look as if it were only a newline. */
  2253. ignore_blank_line ()
  2254. {
  2255.   last_inserted_character = '\n';
  2256.   last_char_was_newline = true;
  2257. }
  2258.  
  2259. /* Begin a new paragraph. */
  2260. start_paragraph ()
  2261. {
  2262.  
  2263.   /* First close existing one. */
  2264.   if (paragraph_is_open)
  2265.     close_paragraph ();
  2266.  
  2267.   paragraph_is_open = true;
  2268.  
  2269.   if (!must_start_paragraph)
  2270.     {
  2271.       output_column = 0;
  2272.  
  2273.       /* If doing indentation, then insert the appropriate amount. */
  2274.       if (!no_indent)
  2275.     {
  2276.       if (inhibit_paragraph_indentation != 0)
  2277.         {
  2278.           output_column = current_indent;
  2279.           if (inhibit_paragraph_indentation < 0)
  2280.         inhibit_paragraph_indentation += 1;
  2281.         }
  2282.       else if (paragraph_start_indent < 0)
  2283.         output_column = current_indent;
  2284.       else
  2285.         output_column = current_indent + paragraph_start_indent;
  2286.  
  2287.       indent (output_column);
  2288.     }
  2289.     }
  2290.   else
  2291.     must_start_paragraph = 0;
  2292. }
  2293.  
  2294. /* Insert the indentation specified by AMOUNT. */
  2295. indent (amount)
  2296.      int amount;
  2297. {
  2298.   while (--amount >= 0)
  2299.     insert (' ');
  2300. }
  2301.  
  2302. /* Search forward for STRING in input_text.
  2303.    FROM says where where to start. */
  2304. search_forward (string, from)
  2305.      char *string;
  2306.      int from;
  2307. {
  2308.   int len = strlen (string);
  2309.  
  2310.   while (from < size_of_input_text)
  2311.     {
  2312.       if (strnicmp (input_text + from, string, len) == 0)
  2313.     return (from);
  2314.       from++;
  2315.     }
  2316.   return (-1);
  2317. }
  2318.  
  2319. /* Whoops, Unix doesn't have stricmp, or strnicmp. */
  2320.  
  2321. /* Case independent string compare. */
  2322. stricmp (string1, string2)
  2323.      char *string1, *string2;
  2324. {
  2325.   char ch1, ch2;
  2326.  
  2327.   for (;;)
  2328.     {
  2329.       ch1 = *string1++;
  2330.       ch2 = *string2++;
  2331.       if (!(ch1 | ch2))
  2332.     return (0);
  2333.  
  2334.       ch1 = coerce_to_upper (ch1);
  2335.       ch2 = coerce_to_upper (ch2);
  2336.  
  2337.       if (ch1 != ch2)
  2338.     return (1);
  2339.     }
  2340. }
  2341.  
  2342. /* Compare at most COUNT characters from string1 to string2.  Case
  2343.    doesn't matter. */
  2344. strnicmp (string1, string2, count)
  2345.      char *string1, *string2;
  2346. {
  2347.   char ch1, ch2;
  2348.  
  2349.   while (count)
  2350.     {
  2351.       ch1 = *string1++;
  2352.       ch2 = *string2++;
  2353.       if (coerce_to_upper (ch1) == coerce_to_upper (ch2))
  2354.     count--;
  2355.       else
  2356.     break;
  2357.     }
  2358.   return (count);
  2359. }
  2360.  
  2361. enum insertion_type
  2362. {
  2363.   menu, quotation, lisp, smalllisp, example, smallexample, display,
  2364.   itemize, format, enumerate, alphaenumerate, capsenumerate, cartouche,
  2365.   table, ftable, group, ifinfo, flushleft, flushright, ifset, ifclear,
  2366.   deffn, defun, defmac, defspec, defvr, defvar, defopt, deftypefn,
  2367.   deftypefun, deftypevr, deftypevar, defcv, defivar, defop, defmethod,
  2368.   deftypemethod, deftp, bad_type
  2369. };
  2370.  
  2371. char *insertion_type_names[] =
  2372. {
  2373.   "menu", "quotation", "lisp", "smalllisp", "example", "smallexample",
  2374.   "display", "itemize", "format", "enumerate", "alphaenumerate",
  2375.   "capsenumerate", "cartouche", "table", "ftable", "group", "ifinfo",
  2376.   "flushleft", "flushright", "ifset", "ifclear", "deffn", "defun",
  2377.   "defmac", "defspec", "defvr", "defvar", "defopt", "deftypefn",
  2378.   "deftypefun", "deftypevr", "deftypevar", "defcv", "defivar",
  2379.   "defop", "defmethod", "deftypemethod", "deftp", "bad_type"
  2380. };
  2381.  
  2382. int insertion_level = 0;
  2383. typedef struct istack_elt
  2384. {
  2385.   struct istack_elt *next;
  2386.   char *item_function;
  2387.   int line_number;
  2388.   int filling_enabled;
  2389.   int indented_fill;
  2390.   enum insertion_type insertion;
  2391.   int inhibited;
  2392. } INSERTION_ELT;
  2393.  
  2394. INSERTION_ELT *insertion_stack = (INSERTION_ELT *) NULL;
  2395.  
  2396. init_insertion_stack ()
  2397. {
  2398.   insertion_stack = (INSERTION_ELT *) NULL;
  2399. }
  2400.  
  2401. /* Return the type of the current insertion. */
  2402. enum insertion_type
  2403. current_insertion_type ()
  2404. {
  2405.   if (!insertion_level)
  2406.     return (bad_type);
  2407.   else
  2408.     return (insertion_stack->insertion);
  2409. }
  2410.  
  2411. /* Return a pointer to the string which is the function
  2412.    to wrap around items. */
  2413. char *
  2414. current_item_function ()
  2415. {
  2416.   if (!insertion_level)
  2417.     return ((char *) NULL);
  2418.   else
  2419.     return (insertion_stack->item_function);
  2420. }
  2421.  
  2422. char *
  2423. get_item_function ()
  2424. {
  2425.   char *item_function;
  2426.   get_rest_of_line (&item_function);
  2427.   backup_input_pointer ();
  2428.   canon_white (item_function);
  2429.   return (item_function);
  2430. }
  2431.  
  2432.  /* Push the state of the current insertion on the stack. */
  2433. push_insertion (type, item_function)
  2434.      enum insertion_type type;
  2435.      char *item_function;
  2436. {
  2437.   INSERTION_ELT *new = (INSERTION_ELT *) xmalloc (sizeof (INSERTION_ELT));
  2438.  
  2439.   new->item_function = item_function;
  2440.   new->filling_enabled = filling_enabled;
  2441.   new->indented_fill = indented_fill;
  2442.   new->insertion = type;
  2443.   new->line_number = line_number;
  2444.   new->inhibited = inhibit_paragraph_indentation;
  2445.   new->next = insertion_stack;
  2446.   insertion_stack = new;
  2447.   insertion_level++;
  2448. }
  2449.  
  2450.  /* Pop the value on top of the insertion stack into the
  2451.     global variables. */
  2452. pop_insertion ()
  2453. {
  2454.   INSERTION_ELT *temp = insertion_stack;
  2455.   if (temp == (INSERTION_ELT *) NULL)
  2456.     return;
  2457.   inhibit_paragraph_indentation = temp->inhibited;
  2458.   filling_enabled = insertion_stack->filling_enabled;
  2459.   indented_fill = insertion_stack->indented_fill;
  2460.   free_and_clear (&(temp->item_function));
  2461.   insertion_stack = insertion_stack->next;
  2462.   free (temp);
  2463.   insertion_level--;
  2464. }
  2465.  
  2466.  /* Return a pointer to the print name of this
  2467.     enumerated type. */
  2468. char *
  2469. insertion_type_pname (type)
  2470.      enum insertion_type type;
  2471. {
  2472.   if ((int) type < (int) bad_type)
  2473.     return (insertion_type_names[(int) type]);
  2474.   else
  2475.     return ("Broken-Type in insertion_type_pname");
  2476. }
  2477.  
  2478. /* Return the insertion_type associated with NAME.
  2479.    If the type is not one of the known ones, return BAD_TYPE. */
  2480. enum insertion_type
  2481. find_type_from_name (name)
  2482.      char *name;
  2483. {
  2484.   int index = 0;
  2485.   while (index < (int) bad_type)
  2486.     {
  2487.       if (stricmp (name, insertion_type_names[index]) == 0)
  2488.     return (enum insertion_type) index;
  2489.       index++;
  2490.     }
  2491.   return (bad_type);
  2492. }
  2493.  
  2494. do_nothing ()
  2495. {
  2496. }
  2497.  
  2498. int
  2499. defun_insertion (type)
  2500.      enum insertion_type type;
  2501. {
  2502.   return
  2503.     ((type == deffn)
  2504.      || (type == defun)
  2505.      || (type == defmac)
  2506.      || (type == defspec)
  2507.      || (type == defvr)
  2508.      || (type == defvar)
  2509.      || (type == defopt)
  2510.      || (type == deftypefn)
  2511.      || (type == deftypefun)
  2512.      || (type == deftypevr)
  2513.      || (type == deftypevar)
  2514.      || (type == defcv)
  2515.      || (type == defivar)
  2516.      || (type == defop)
  2517.      || (type == defmethod)
  2518.      || (type == deftypemethod)
  2519.      || (type == deftp));
  2520. }
  2521.  
  2522. /* Non-zero means that we are currently hacking the insides of an
  2523.    insertion which would use a fixed width font. */
  2524. int in_fixed_width_font = 0;
  2525.  
  2526. /* This is where the work for all the "insertion" style
  2527.    commands is done.  A huge switch statement handles the
  2528.    various setups, and generic code is on both sides. */
  2529. begin_insertion (type)
  2530.      enum insertion_type type;
  2531. {
  2532.   int no_discard = 0;
  2533.  
  2534.   close_paragraph ();
  2535.  
  2536.   if (defun_insertion (type))
  2537.     {
  2538.       push_insertion (type, savestring (""));
  2539.       no_discard++;
  2540.     }
  2541.   else
  2542.     push_insertion (type, get_item_function ());
  2543.  
  2544.   filling_enabled = false;    /* The general case for insertions. */
  2545.   inhibit_paragraph_indentation = 1;
  2546.   no_indent = false;
  2547.  
  2548.   switch (type)
  2549.     {
  2550.     case menu:
  2551.       add_word ("* Menu:\n");
  2552.       in_menu++;
  2553.       no_discard++;
  2554.       break;
  2555.  
  2556.       /* I think @quotation is meant to do filling.
  2557.      If you don't want filling, then use @example. */
  2558.     case quotation:
  2559.       last_char_was_newline = 0;
  2560.       indented_fill = filling_enabled = true;
  2561.       current_indent += default_indentation_increment;
  2562.       break;
  2563.  
  2564.     case display:
  2565.     case example:
  2566.     case smallexample:
  2567.     case lisp:
  2568.     case smalllisp:
  2569.       last_char_was_newline = 0;
  2570.       current_indent += default_indentation_increment;
  2571.       in_fixed_width_font++;
  2572.       break;
  2573.  
  2574.       /* Just like @example, but no indentation. */
  2575.     case format:
  2576.       last_char_was_newline = 0;
  2577.       in_fixed_width_font++;
  2578.       break;
  2579.  
  2580.     case table:
  2581.     case ftable:
  2582.     case itemize:
  2583.       current_indent += default_indentation_increment;
  2584.       filling_enabled = indented_fill = true;
  2585.  
  2586.       /* Make things work for losers who forget the itemize syntax. */
  2587.       if (type == itemize)
  2588.     {
  2589.       if (!(*insertion_stack->item_function))
  2590.         {
  2591.           free (insertion_stack->item_function);
  2592.           insertion_stack->item_function = savestring ("@bullet");
  2593.         }
  2594.     }
  2595.       break;
  2596.  
  2597.     case enumerate:
  2598.       inhibit_paragraph_indentation = 0;
  2599.       current_indent += default_indentation_increment;
  2600.       start_numbering (1);
  2601.       filling_enabled = indented_fill = true;
  2602.       break;
  2603.  
  2604.     case alphaenumerate:
  2605.     case capsenumerate:
  2606.       inhibit_paragraph_indentation = 0;
  2607.       current_indent += default_indentation_increment;
  2608.       filling_enabled = indented_fill = true;
  2609.  
  2610.       if (type == alphaenumerate)
  2611.     start_lettering ('a');
  2612.       else
  2613.     start_lettering ('A');
  2614.  
  2615.       break;
  2616.  
  2617.       /* Insertions that are no-ops in info, but do something in TeX. */
  2618.     case group:
  2619.     case ifinfo:
  2620.     case ifset:
  2621.     case ifclear:
  2622.     case cartouche:
  2623.       inhibit_paragraph_indentation = insertion_stack->inhibited;
  2624.       filling_enabled = insertion_stack->filling_enabled;
  2625.       indented_fill = insertion_stack->indented_fill;
  2626.       break;
  2627.  
  2628.     case deffn:
  2629.     case defun:
  2630.     case defmac:
  2631.     case defspec:
  2632.     case defvr:
  2633.     case defvar:
  2634.     case defopt:
  2635.     case deftypefn:
  2636.     case deftypefun:
  2637.     case deftypevr:
  2638.     case deftypevar:
  2639.     case defcv:
  2640.     case defivar:
  2641.     case defop:
  2642.     case defmethod:
  2643.     case deftypemethod:
  2644.     case deftp:
  2645.       filling_enabled = indented_fill = true;
  2646.       current_indent += default_indentation_increment;
  2647.       break;
  2648.  
  2649.     case flushleft:
  2650.       filling_enabled = indented_fill = false;
  2651.       break;
  2652.  
  2653.     case flushright:
  2654.       filling_enabled = indented_fill = false;
  2655.       force_flush_right++;
  2656.       break;
  2657.     }
  2658.  
  2659.   if (!no_discard)
  2660.     discard_until ("\n");
  2661. }
  2662.  
  2663. /* Try to end the quotation with the specified type.
  2664.    Like begin_insertion (), this uses a giant switch statement as
  2665.    well.  A big difference is that you *must* pass a valid type to
  2666.    this function, and a value of bad_type gets translated to match
  2667.    the value currently on top of the stack.  If, however, the value
  2668.    passed is a valid type, and it doesn't match the top of the
  2669.    stack, then we produce an error.  Should fix this, somewhat
  2670.    unclean. */
  2671. end_insertion (type)
  2672.      enum insertion_type type;
  2673. {
  2674.   enum insertion_type temp_type;
  2675.  
  2676.   if (!insertion_level)
  2677.     return;
  2678.  
  2679.   temp_type = current_insertion_type ();
  2680.  
  2681.   if (type == bad_type)
  2682.     type = temp_type;
  2683.  
  2684.   if (type != temp_type)
  2685.     {
  2686.       line_error
  2687.     ("Expected `%s', but saw `%s'.",
  2688.      insertion_type_pname (temp_type), insertion_type_pname (type));
  2689.       return;
  2690.     }
  2691.  
  2692.   pop_insertion ();
  2693.  
  2694.   switch (type)
  2695.     {
  2696.     case menu:
  2697.       in_menu--;        /* No longer hacking menus. */
  2698.       break;
  2699.  
  2700.     case enumerate:
  2701.       stop_numbering ();
  2702.       current_indent -= default_indentation_increment;
  2703.       break;
  2704.  
  2705.     case alphaenumerate:
  2706.     case capsenumerate:
  2707.       stop_lettering ();
  2708.       current_indent -= default_indentation_increment;
  2709.       break;
  2710.  
  2711.     case flushleft:
  2712.     case group:
  2713.     case ifinfo:
  2714.     case ifset:
  2715.     case ifclear:
  2716.     case cartouche:
  2717.       break;
  2718.  
  2719.     case format:
  2720.       in_fixed_width_font--;
  2721.       break;
  2722.  
  2723.     case display:
  2724.     case example:
  2725.     case smallexample:
  2726.     case lisp:
  2727.     case smalllisp:
  2728.       in_fixed_width_font--;
  2729.       current_indent -= default_indentation_increment;
  2730.       break;
  2731.  
  2732.     case flushright:
  2733.       force_flush_right--;
  2734.       break;
  2735.  
  2736.     default:
  2737.       current_indent -= default_indentation_increment;
  2738.       break;
  2739.     }
  2740.   close_paragraph ();
  2741.   must_start_paragraph = 1;
  2742. }
  2743.  
  2744. /* Insertions cannot cross certain boundaries, such as node beginnings.  In
  2745.    code that creates such boundaries, you should call discard_insertions ()
  2746.    before doing anything else.  It prints the errors for you, and cleans up
  2747.    the insertion stack. */
  2748. discard_insertions ()
  2749. {
  2750.   int real_line_number = line_number;
  2751.   while (insertion_stack)
  2752.     {
  2753.       if (insertion_stack->insertion == ifinfo ||
  2754.       insertion_stack->insertion == ifset ||
  2755.       insertion_stack->insertion == ifclear ||
  2756.       insertion_stack->insertion == cartouche)
  2757.     break;
  2758.       else
  2759.     {
  2760.       char *offender = (char *)
  2761.         insertion_type_pname (insertion_stack->insertion);
  2762.  
  2763.       line_number = insertion_stack->line_number;
  2764.       line_error ("This `%s' doesn't have a matching `%cend %s'", offender,
  2765.               COMMAND_PREFIX, offender);
  2766.       pop_insertion ();
  2767.     }
  2768.     }
  2769.   line_number = real_line_number;
  2770. }
  2771.  
  2772. /* MAX_NS is the maximum nesting level for enumerations.  I picked 100
  2773.    which seemed reasonable.  This doesn't control the number of items,
  2774.    just the number of nested lists. */
  2775. #define max_ns 100
  2776. int number_stack[max_ns];
  2777. int number_offset = 0;
  2778. int the_current_number = 0;
  2779.  
  2780. int letter_stack[max_ns];
  2781. int letter_offset = 0;
  2782. int the_current_letter = 0;
  2783.  
  2784. start_numbering (at_number)
  2785.      int at_number;
  2786. {
  2787.   if (number_offset + 1 == max_ns)
  2788.     {
  2789.       line_error ("Enumeration stack overflow");
  2790.       return;
  2791.     }
  2792.   number_stack[number_offset++] = the_current_number;
  2793.   the_current_number = at_number;
  2794. }
  2795.  
  2796. stop_numbering ()
  2797. {
  2798.   the_current_number = number_stack[--number_offset];
  2799.   if (number_offset < 0)
  2800.     number_offset = 0;
  2801. }
  2802.  
  2803. start_lettering (at_letter)
  2804.      int at_letter;
  2805. {
  2806.   if (letter_offset + 1 == max_ns)
  2807.     {
  2808.       line_error ("Alpha-enumeration stack overflow");
  2809.       return;
  2810.     }
  2811.   letter_stack[letter_offset++] = the_current_letter;
  2812.   the_current_letter = at_letter;
  2813. }
  2814.  
  2815. stop_lettering ()
  2816. {
  2817.   the_current_letter = letter_stack[--letter_offset];
  2818.   if (letter_offset < 0)
  2819.     letter_offset = 0;
  2820. }
  2821.  
  2822. /* Place a letter into the output stream. */
  2823. letter_item ()
  2824. {
  2825.   char temp[10];
  2826.  
  2827.   sprintf (temp, "%c) ", the_current_letter);
  2828.   indent (output_column += (current_indent - strlen (temp)));
  2829.   add_word (temp);
  2830.  
  2831.   if (the_current_letter == 'z' || the_current_letter == 'Z')
  2832.     {
  2833.       the_current_letter = (the_current_letter == 'z' ? 'a' : 'A');
  2834.       warning ("Lettering overflow, restarting at %c", the_current_letter);
  2835.     }
  2836.   else
  2837.     the_current_letter++;
  2838. }
  2839.  
  2840. /* Place a number into the output stream. */
  2841. number_item ()
  2842. {
  2843.   char temp[10];
  2844.   sprintf (temp, "%d. ", the_current_number);
  2845.   indent (output_column += (current_indent - strlen (temp)));
  2846.   add_word (temp);
  2847.   the_current_number++;
  2848. }
  2849.  
  2850. /* The actual commands themselves. */
  2851.  
  2852. /* Commands which insert themselves. */
  2853. insert_self ()
  2854. {
  2855.   add_word (command);
  2856. }
  2857.  
  2858. /* Force line break */
  2859. cm_asterisk ()
  2860. {
  2861.   /* Force a line break in the output. */
  2862.   insert ('\n');
  2863.   indent (output_column = current_indent);
  2864. }
  2865.  
  2866. /* Insert ellipsis. */
  2867. cm_dots (arg)
  2868.      int arg;
  2869. {
  2870.   if (arg == START)
  2871.     add_word ("...");
  2872. }
  2873.  
  2874. cm_bullet (arg)
  2875.      int arg;
  2876. {
  2877.   if (arg == START)
  2878.     add_char ('*');
  2879. }
  2880.  
  2881. cm_minus (arg)
  2882.      int arg;
  2883. {
  2884.   if (arg == START)
  2885.     add_char ('-');
  2886. }
  2887.  
  2888. /* Insert "TeX". */
  2889. cm_TeX (arg)
  2890.      int arg;
  2891. {
  2892.   if (arg == START)
  2893.     add_word ("TeX");
  2894. }
  2895.  
  2896. cm_copyright (arg)
  2897.      int arg;
  2898. {
  2899.   if (arg == START)
  2900.     add_word ("(C)");
  2901. }
  2902.  
  2903. cm_today (arg)
  2904.      int arg;
  2905. {
  2906.   static char * months [12] =
  2907.     { "January", "February", "March", "April", "May", "June", "July",
  2908.     "August", "September", "October", "November", "December" };
  2909.   if (arg == START)
  2910.     {
  2911.       long timer = (time (0));
  2912.       struct tm * ts = (localtime (&timer));
  2913.       add_word_args
  2914.     ("%d %s %d",
  2915.      (ts -> tm_mday),
  2916.      (months [ts -> tm_mon]),
  2917.      ((ts -> tm_year) + 1900));
  2918.     }
  2919. }
  2920.  
  2921. cm_code (arg)
  2922.      int arg;
  2923. {
  2924.   extern int printing_index;
  2925.  
  2926.   if (printing_index)
  2927.     return;
  2928.  
  2929.   if (arg == START)
  2930.     add_char ('`');
  2931.   else
  2932.     add_word ("'");
  2933. }
  2934.  
  2935. cm_samp (arg)
  2936.      int arg;
  2937. {
  2938.   cm_code (arg);
  2939. }
  2940.  
  2941. cm_file (arg)
  2942.      int arg;
  2943. {
  2944.   cm_code (arg);
  2945. }
  2946.  
  2947. cm_kbd (arg)
  2948.      int arg;
  2949. {
  2950.   cm_code (arg);
  2951. }
  2952.  
  2953. cm_key (arg)
  2954.      int arg;
  2955. {
  2956. }
  2957.  
  2958. /* Convert the character at position-1 into CTL. */
  2959. cm_ctrl (arg, position)
  2960.      int arg, position;
  2961. {
  2962.   if (arg == END)
  2963.     output_paragraph[position - 1] = CTL (output_paragraph[position - 1]);
  2964. }
  2965.  
  2966. /* Small Caps in makeinfo just does all caps. */
  2967. cm_sc (arg, start_pos, end_pos)
  2968.      int arg, start_pos, end_pos;
  2969. {
  2970.   if (arg == END)
  2971.     {
  2972.       while (start_pos < end_pos)
  2973.     {
  2974.       output_paragraph[start_pos] =
  2975.         coerce_to_upper (output_paragraph[start_pos]);
  2976.       start_pos++;
  2977.     }
  2978.     }
  2979. }
  2980.  
  2981. /* @var in makeinfo just uppercases the text. */
  2982. cm_var (arg, start_pos, end_pos)
  2983.      int arg, start_pos, end_pos;
  2984. {
  2985.   if (arg == END)
  2986.     {
  2987.       while (start_pos < end_pos)
  2988.     {
  2989.       output_paragraph[start_pos] =
  2990.         coerce_to_upper (output_paragraph[start_pos]);
  2991.       start_pos++;
  2992.     }
  2993.     }
  2994. }
  2995.  
  2996. cm_dfn (arg, position)
  2997.      int arg, position;
  2998. {
  2999.   add_char ('"');
  3000. }
  3001.  
  3002. cm_emph (arg)
  3003.      int arg;
  3004. {
  3005.   add_char ('*');
  3006. }
  3007.  
  3008. cm_strong (arg, position)
  3009.      int arg, position;
  3010. {
  3011.   cm_emph (arg);
  3012. }
  3013.  
  3014. cm_cite (arg, position)
  3015.      int arg, position;
  3016. {
  3017.   if (arg == START)
  3018.     add_word ("`");
  3019.   else
  3020.     add_word ("'");
  3021. }
  3022.  
  3023. /* Current text is italicized. */
  3024. cm_italic (arg, start, end)
  3025.      int arg, start, end;
  3026. {
  3027. }
  3028.  
  3029. /* Current text is highlighted. */
  3030. cm_bold (arg, start, end)
  3031.      int arg, start, end;
  3032. {
  3033.   cm_italic (arg);
  3034. }
  3035.  
  3036. /* Current text is in roman font. */
  3037. cm_roman (arg, start, end)
  3038.      int arg, start, end;
  3039. {
  3040. }
  3041.  
  3042. /* Italicize titles. */
  3043. cm_title (arg, start, end)
  3044.      int arg, start, end;
  3045. {
  3046.   cm_italic (arg);
  3047. }
  3048.  
  3049. /* @refill is a NOP. */
  3050. cm_refill ()
  3051. {
  3052. }
  3053.  
  3054. /* Prevent the argument from being split across two lines. */
  3055. cm_w (arg, start, end)
  3056.      int arg, start, end;
  3057. {
  3058.   if (arg == START)
  3059.     non_splitting_words++;
  3060.   else
  3061.     non_splitting_words--;
  3062. }
  3063.  
  3064.  
  3065. /* Explain that this command is obsolete, thus the user shouldn't
  3066.    do anything with it. */
  3067. cm_obsolete (arg, start, end)
  3068.      int arg, start, end;
  3069. {
  3070.   if (arg == START)
  3071.     warning ("The command `@%s' is obsolete", command);
  3072. }
  3073.  
  3074. /* Insert the text following input_text_offset up to the end of the line
  3075.    in a new, separate paragraph.  Directly underneath it, insert a
  3076.    line of WITH_CHAR, the same length of the inserted text. */
  3077. insert_and_underscore (with_char)
  3078.      int with_char;
  3079. {
  3080.   int len, i, old_no_indent;
  3081.   char *temp;
  3082.  
  3083.   close_paragraph ();
  3084.   filling_enabled =  indented_fill = false;
  3085.   old_no_indent = no_indent;
  3086.   no_indent = true;
  3087.   get_rest_of_line (&temp);
  3088.  
  3089.   len = output_position;
  3090.   execute_string ("%s\n", temp);
  3091.   free (temp);
  3092.  
  3093.   len = ((output_position + output_paragraph_offset) - 1) - len;
  3094.   for (i = 0; i < len; i++)
  3095.     add_char (with_char);
  3096.   insert ('\n');
  3097.   close_paragraph ();
  3098.   filling_enabled = true;
  3099.   no_indent = old_no_indent;
  3100. }
  3101.  
  3102. /* The remainder of the text on this line is a chapter heading. */
  3103. cm_chapter ()
  3104. {
  3105.   insert_and_underscore ('*');
  3106. }
  3107.  
  3108. /* The remainder of the text on this line is a section heading. */
  3109. cm_section ()
  3110. {
  3111.   insert_and_underscore ('=');
  3112. }
  3113.  
  3114. /* The remainder of the text on this line is a subsection heading. */
  3115. cm_subsection ()
  3116. {
  3117.   insert_and_underscore ('-');
  3118. }
  3119.  
  3120. /* The remainder of the text on this line is a subsubsection heading. */
  3121. cm_subsubsection ()
  3122. {
  3123.   insert_and_underscore ('.');
  3124. }
  3125.  
  3126. /* Here is a structure which associates sectioning commands with
  3127.    an integer, hopefully to reflect the `depth' of the current
  3128.    section. */
  3129. struct {
  3130.   char *name;
  3131.   int level;
  3132. } section_alist[] = {
  3133.   { "unnumberedsubsubsec", 5 },
  3134.   { "unnumberedsubsec", 4 },
  3135.   { "unnumberedsec", 3 },
  3136.   { "unnumbered", 2 },
  3137.   { "appendixsubsubsec", 5 },
  3138.   { "appendixsubsec", 4 },
  3139.   { "appendixsec", 3 },
  3140.   { "appendixsection", 3 },
  3141.   { "appendix", 2 },
  3142.   { "subsubsec", 5 },
  3143.   { "subsubsection", 5 },
  3144.   { "subsection", 4 },
  3145.   { "section", 3 },
  3146.   { "chapter", 2 },
  3147.   { "top", 1 },
  3148.  
  3149.   { (char *)NULL, 0 }
  3150. };
  3151.  
  3152. /* Return an integer which identifies the type section present in TEXT. */
  3153. int
  3154. what_section (text)
  3155.      char *text;
  3156. {
  3157.   int i, j;
  3158.   char *t;
  3159.  
  3160.  find_section_command:
  3161.   for (j = 0; text[j] && cr_or_whitespace (text[j]); j++);
  3162.   if (text[j] != '@')
  3163.     return (-1);
  3164.  
  3165.   text = text + j + 1;
  3166.  
  3167.   /* We skip @comment commands. */
  3168.   if (strncmp (text, "comment", strlen ("comment")) == 0)
  3169.     {
  3170.       for (j = 0; text[j] && text[j] != '\n'; j++);
  3171.       goto find_section_command;
  3172.     }
  3173.  
  3174.   /* Handle italicized sectioning commands. */
  3175.   if (*text == 'i')
  3176.     text++;
  3177.  
  3178.   for (j = 0; text[j] && !cr_or_whitespace (text[j]); j++);
  3179.  
  3180.   for (i = 0; t = section_alist[i].name; i++)
  3181.     {
  3182.       if (j == strlen (t) && strncmp (t, text, j) == 0)
  3183.     return (section_alist[i].level);
  3184.     }
  3185.   return (-1);
  3186. }
  3187.  
  3188. /* Treat this just like @unnumbered.  The only difference is
  3189.    in node defaulting. */
  3190. cm_top ()
  3191. {
  3192.   static int top_encountered = 0;
  3193.   cm_unnumbered ();
  3194.  
  3195.   /* It is an error to have more than one @top. */
  3196.   if (top_encountered)
  3197.     {
  3198.       TAG_ENTRY *tag = tag_table;
  3199.  
  3200.       line_error ("There already is a node having @top as a section");
  3201.  
  3202.       while (tag != (TAG_ENTRY *)NULL)
  3203.     {
  3204.       if ((tag->flags & IS_TOP))
  3205.         {
  3206.           int old_line_number = line_number;
  3207.           line_number = tag->line_no;
  3208.           line_error ("Here is the @top node.");
  3209.           line_number = old_line_number;
  3210.           return;
  3211.         }
  3212.       tag = tag->next_ent;
  3213.     }
  3214.     }
  3215.   else
  3216.     {
  3217.       top_encountered = 1;
  3218.  
  3219.       /* The most recently defined node is the top node. */
  3220.       if (tag_table)
  3221.     tag_table->flags |= IS_TOP;
  3222.  
  3223.       /* Now set the logical hierarchical level of the Top node. */
  3224.       {
  3225.     int orig_offset = input_text_offset;
  3226.  
  3227.     input_text_offset = search_forward ("\n@node", orig_offset);
  3228.  
  3229.     if (input_text_offset > 0)
  3230.       {
  3231.         int this_section;
  3232.  
  3233.         /* Move to the end of this line, and find out what the
  3234.            sectioning command is here. */
  3235.         while (input_text[input_text_offset] != '\n')
  3236.           input_text_offset++;
  3237.  
  3238.         if (input_text_offset < size_of_input_text)
  3239.           input_text_offset++;
  3240.  
  3241.         this_section = what_section (input_text + input_text_offset);
  3242.  
  3243.         /* If we found a sectioning command, then give the top section
  3244.            a level of this section - 1. */
  3245.         if (this_section != -1)
  3246.           {
  3247.         register int i;
  3248.  
  3249.         for (i = 0; section_alist[i].name; i++)
  3250.           if (strcmp (section_alist[i].name, "Top") == 0)
  3251.             {
  3252.               section_alist[i].level = this_section - 1;
  3253.               break;
  3254.             }
  3255.           }
  3256.       }
  3257.     input_text_offset = orig_offset;
  3258.       }
  3259.     }
  3260. }
  3261.  
  3262. /* The remainder of the text on this line is an unnumbered heading. */
  3263. cm_unnumbered ()
  3264. {
  3265.   cm_chapter ();
  3266. }
  3267.  
  3268. /* The remainder of the text on this line is an unnumbered section heading. */
  3269. cm_unnumberedsec ()
  3270. {
  3271.   cm_section ();
  3272. }
  3273.  
  3274. /* The remainder of the text on this line is an unnumbered
  3275.    subsection heading. */
  3276. cm_unnumberedsubsec ()
  3277. {
  3278.   cm_subsection ();
  3279. }
  3280.  
  3281. /* The remainder of the text on this line is an unnumbered
  3282.    subsubsection heading. */
  3283. cm_unnumberedsubsubsec ()
  3284. {
  3285.   cm_subsubsection ();
  3286. }
  3287.  
  3288. /* The remainder of the text on this line is an appendix heading. */
  3289. cm_appendix ()
  3290. {
  3291.   cm_chapter ();
  3292. }
  3293.  
  3294. /* The remainder of the text on this line is an appendix section heading. */
  3295. cm_appendixsec ()
  3296. {
  3297.   cm_section ();
  3298. }
  3299.  
  3300. /* The remainder of the text on this line is an appendix subsection heading. */
  3301. cm_appendixsubsec ()
  3302. {
  3303.   cm_subsection ();
  3304. }
  3305.  
  3306. /* The remainder of the text on this line is an appendix
  3307.    subsubsection heading. */
  3308. cm_appendixsubsubsec ()
  3309. {
  3310.   cm_subsubsection ();
  3311. }
  3312.  
  3313. /* Compatibility functions substitute for chapter, section, etc. */
  3314. cm_majorheading ()
  3315. {
  3316.   cm_chapheading ();
  3317. }
  3318.  
  3319. cm_chapheading ()
  3320. {
  3321.   cm_chapter ();
  3322. }
  3323.  
  3324. cm_heading ()
  3325. {
  3326.   cm_section ();
  3327. }
  3328.  
  3329. cm_subheading ()
  3330. {
  3331.   cm_subsection ();
  3332. }
  3333.  
  3334. cm_subsubheading ()
  3335. {
  3336.   cm_subsubsection ();
  3337. }
  3338.  
  3339.  
  3340. /* **************************************************************** */
  3341. /*                                    */
  3342. /*           Adding nodes, and making tags            */
  3343. /*                                    */
  3344. /* **************************************************************** */
  3345.  
  3346. /* Start a new tag table. */
  3347. init_tag_table ()
  3348. {
  3349.   while (tag_table != (TAG_ENTRY *) NULL)
  3350.     {
  3351.       TAG_ENTRY *temp = tag_table;
  3352.       free (temp->node);
  3353.       free (temp->prev);
  3354.       free (temp->next);
  3355.       free (temp->up);
  3356.       tag_table = tag_table->next_ent;
  3357.       free (temp);
  3358.     }
  3359. }
  3360.  
  3361. write_tag_table ()
  3362. {
  3363.   return (write_tag_table_internal (false));    /* Not indirect. */
  3364. }
  3365.  
  3366. write_tag_table_indirect ()
  3367. {
  3368.   return (write_tag_table_internal (true));
  3369. }
  3370.  
  3371. /* Write out the contents of the existing tag table.
  3372.    INDIRECT_P says how to format the output. */
  3373. write_tag_table_internal (indirect_p)
  3374.      boolean indirect_p;
  3375. {
  3376.   TAG_ENTRY *node = tag_table;
  3377.   boolean old_indent = no_indent;
  3378.  
  3379.   no_indent = true;
  3380.   filling_enabled = false;
  3381.   must_start_paragraph = 0;
  3382.   close_paragraph ();
  3383.  
  3384.   if (!indirect_p)
  3385.     {
  3386.       no_indent = true;
  3387.       insert ('\n');
  3388.     }
  3389.  
  3390.   add_word_args ("\037\nTag Table:\n%s", indirect_p ? "(Indirect)\n" : "");
  3391.  
  3392.   while (node != (TAG_ENTRY *) NULL)
  3393.     {
  3394.       add_word_args ("Node: %s\177%d\n", node->node, node->position);
  3395.       node = node->next_ent;
  3396.     }
  3397.  
  3398.   add_word ("\037\nEnd Tag Table\n");
  3399.   flush_output ();
  3400.   no_indent = old_indent;
  3401. }
  3402.  
  3403. char *
  3404. get_node_token ()
  3405. {
  3406.   char *string;
  3407.  
  3408.   get_until_in_line (",", &string);
  3409.  
  3410.   if (curchar () == ',')
  3411.     input_text_offset++;
  3412.  
  3413.   canon_white (string);
  3414.  
  3415.   /* Allow things like @@nodename. */
  3416.   normalize_node_name (string);
  3417.  
  3418.   return (string);
  3419. }
  3420.  
  3421. /* Given a node name in STRING, remove double @ signs, replacing them
  3422.    with just one. */
  3423. normalize_node_name (string)
  3424.      char *string;
  3425. {
  3426.   register int i, l = strlen (string);
  3427.  
  3428.   for (i = 0; i < l; i++)
  3429.     {
  3430.       if (string[i] == '@' && string[i + 1] == '@')
  3431.     {
  3432.       strncpy (string + i, string + i + 1, l - i);
  3433.       l--;
  3434.     }
  3435.     }
  3436. }
  3437.  
  3438. /* Look up NAME in the tag table, and return the associated
  3439.    tag_entry.  If the node is not in the table return NULL. */
  3440. TAG_ENTRY *
  3441. find_node (name)
  3442.      char *name;
  3443. {
  3444.   TAG_ENTRY *tag = tag_table;
  3445.  
  3446.   while (tag != (TAG_ENTRY *) NULL)
  3447.     {
  3448.       if (stricmp (tag->node, name) == 0)
  3449.     return (tag);
  3450.       tag = tag->next_ent;
  3451.     }
  3452.   return ((TAG_ENTRY *) NULL);
  3453. }
  3454.  
  3455. /* Remember NODE and associates. */
  3456. remember_node (node, prev, next, up, position, line_no, no_warn)
  3457.      char *node, *prev, *next, *up;
  3458.      int position, line_no, no_warn;
  3459. {
  3460.   /* Check for existence of this tag already. */
  3461.   if (validating)
  3462.     {
  3463.       register TAG_ENTRY *tag = find_node (node);
  3464.       if (tag)
  3465.     {
  3466.       line_error ("Node `%s' multiply defined (%d is first definition)",
  3467.               node, tag->line_no);
  3468.       return;
  3469.     }
  3470.     }
  3471.  
  3472.   /* First, make this the current node. */
  3473.   current_node = node;
  3474.  
  3475.   /* Now add it to the list. */
  3476.   {
  3477.     TAG_ENTRY *new = (TAG_ENTRY *) xmalloc (sizeof (TAG_ENTRY));
  3478.     new->node = node;
  3479.     new->prev = prev;
  3480.     new->next = next;
  3481.     new->up = up;
  3482.     new->position = position;
  3483.     new->line_no = line_no;
  3484.     new->filename = node_filename;
  3485.     new->touched = 0;        /* not yet referenced. */
  3486.     new->flags = 0;
  3487.     if (no_warn)
  3488.       new->flags |= NO_WARN;
  3489.     new->next_ent = tag_table;
  3490.     tag_table = new;
  3491.   }
  3492. }
  3493.  
  3494.  
  3495. /* The order is: nodename, nextnode, prevnode, upnode.
  3496.    The next, prev, and up fields can be defaulted.
  3497.    You must follow a node command which has those fields
  3498.    defaulted with a sectioning command (e.g. @chapter) giving
  3499.    the "level" of that node.  It is an error not to do so.
  3500.    The defaults come from the menu in this nodes parent. */
  3501. cm_node ()
  3502. {
  3503.   char *node, *prev, *next, *up;
  3504.   int new_node_pos, defaulting, this_section, no_warn = 0;
  3505.   extern int already_outputting_pending_notes;
  3506.  
  3507.   if (strcmp (command, "nwnode") == 0)
  3508.     no_warn = 1;
  3509.  
  3510.   /* Get rid of unmatched brace arguments from previous commands. */
  3511.   discard_braces ();
  3512.  
  3513.   /* There also might be insertions left lying around that haven't been
  3514.      ended yet.  Do that also. */
  3515.   discard_insertions ();
  3516.  
  3517.   this_section = -1;
  3518.  
  3519.   if (!already_outputting_pending_notes)
  3520.     {
  3521.       close_paragraph ();
  3522.       output_pending_notes ();
  3523.       free_pending_notes ();
  3524.     }
  3525.  
  3526.   filling_enabled = indented_fill = false;
  3527.   new_node_pos = output_position + 1;
  3528.   current_footnote_number = 1;
  3529.  
  3530.   node = get_node_token ();
  3531.   next = get_node_token ();
  3532.   prev = get_node_token ();
  3533.   up = get_node_token ();
  3534.  
  3535.   no_indent = true;
  3536.   add_word_args ("\037\nFile: %s,  Node: %s", pretty_output_filename, node);
  3537.  
  3538.   /* Check for defaulting of this node's next, prev, and up fields. */
  3539.   defaulting = ((strlen (next) == 0) &&
  3540.         (strlen (prev) == 0) &&
  3541.         (strlen (up) == 0));
  3542.  
  3543.   /* If we are defaulting, then look at the immediately following
  3544.      sectioning command (error if none) to determine the node's
  3545.      level.  Find the node that contains the menu mentioning this node
  3546.      that is one level up (error if not found).  That node is the "Up"
  3547.      of this node.  Default the "Next" and "Prev" from the menu. */
  3548.   if (defaulting)
  3549.     {
  3550.       NODE_REF *last_ref = (NODE_REF *)NULL;
  3551.       NODE_REF *ref = node_references;
  3552.  
  3553.       this_section = what_section (input_text + input_text_offset);
  3554.  
  3555.       if (this_section < 0)
  3556.     {
  3557.       char *polite_section_name = "top";
  3558.       int i;
  3559.  
  3560.       for (i = 0; section_alist[i].name; i++)
  3561.         if (section_alist[i].level == current_section + 1)
  3562.           {
  3563.         polite_section_name = section_alist[i].name;
  3564.         break;
  3565.           }
  3566.  
  3567.       line_error
  3568.         ("Node `%s' requires a sectioning command (e.g. @%s)",
  3569.          node, polite_section_name);
  3570.     }
  3571.       else
  3572.     {
  3573.       if (stricmp (node, "Top") == 0)
  3574.         {
  3575.           /* Default the NEXT pointer to be the first menu item in
  3576.          this node, if there is a menu in this node. */
  3577.           {
  3578.         int orig_offset, orig_size;
  3579.         char *glean_node_from_menu ();
  3580.  
  3581.         orig_offset = input_text_offset;
  3582.         orig_size = search_forward ("\n@node ", orig_offset);
  3583.  
  3584.         if (orig_size < 0)
  3585.           orig_size = size_of_input_text;
  3586.  
  3587.         input_text_offset = search_forward ("\n@menu", orig_offset);
  3588.         if (input_text_offset > -1)
  3589.           {
  3590.             input_text_offset =
  3591.               search_forward ("\n* ", input_text_offset);
  3592.  
  3593.             if (input_text_offset > -1)
  3594.               next = glean_node_from_menu (0);
  3595.  
  3596.             if (next)
  3597.               {
  3598.             prev = savestring ("(DIR)");
  3599.             up = savestring ("(DIR)");
  3600.               }
  3601.           }
  3602.         input_text_offset = orig_offset;
  3603.           }
  3604.         }
  3605.  
  3606.       while (ref)
  3607.         {
  3608.           if (ref->section == (this_section - 1) &&
  3609.           ref->type == menu_reference &&
  3610.           stricmp (ref->node, node) == 0)
  3611.         {
  3612.           char *containing_node = ref->containing_node;
  3613.  
  3614.           free (up);
  3615.           up = savestring (containing_node);
  3616.  
  3617.           if (last_ref &&
  3618.               strcmp
  3619.               (last_ref->containing_node, containing_node) == 0)
  3620.             {
  3621.               free (next);
  3622.               next = savestring (last_ref->node);
  3623.             }
  3624.  
  3625.           while ((ref->section == this_section - 1) &&
  3626.              (ref->next) &&
  3627.              (ref->next->type != menu_reference))
  3628.             ref = ref->next;
  3629.  
  3630.           if (ref->next &&
  3631.               strcmp
  3632.               (ref->next->containing_node, containing_node) == 0)
  3633.             {
  3634.               free (prev);
  3635.               prev = savestring (ref->next->node);
  3636.             }
  3637.           else if (!ref->next &&
  3638.                stricmp (ref->containing_node, "Top") == 0)
  3639.             {
  3640.               free (prev);
  3641.               prev = savestring (ref->containing_node);
  3642.             }
  3643.           break;
  3644.         }
  3645.           last_ref = ref;
  3646.           ref = ref->next;
  3647.         }
  3648.     }
  3649.     }
  3650.  
  3651.   if (*next)
  3652.     add_word_args (",  Next: %s", next);
  3653.  
  3654.   if (*prev)
  3655.     add_word_args (",  Prev: %s", prev);
  3656.  
  3657.   if (*up)
  3658.     add_word_args (",  Up: %s", up);
  3659.  
  3660.   insert ('\n');
  3661.   close_paragraph ();
  3662.   no_indent = false;
  3663.  
  3664.   if (!*node)
  3665.     {
  3666.       line_error ("No node name specified for `@%s' command", command);
  3667.       free (node);
  3668.       free (next);
  3669.       free (prev);
  3670.       free (up);
  3671.     }
  3672.   else
  3673.     {
  3674.       if (!*next) { free (next); next = (char *)NULL; }
  3675.       if (!*prev) { free (prev); prev = (char *)NULL; }
  3676.       if (!*up) { free (up); up = (char *)NULL; }
  3677.       remember_node (node, prev, next, up, new_node_pos, line_number, no_warn);
  3678.     }
  3679.  
  3680.   /* Change the section only if there was a sectioning command. */
  3681.   if (this_section >= 0)
  3682.     current_section = this_section;
  3683.  
  3684.   filling_enabled = true;
  3685. }
  3686.  
  3687. /* Validation of an info file.
  3688.    Scan through the list of tag entrys touching the Prev, Next, and Up
  3689.    elements of each.  It is an error not to be able to touch one of them,
  3690.    except in the case of external node references, such as "(DIR)".
  3691.  
  3692.    If the Prev is different from the Up,
  3693.    then the Prev node must have a Next pointing at this node.
  3694.  
  3695.    Every node except Top must have an Up.
  3696.    The Up node must contain some sort of reference, other than a Next,
  3697.    to this node.
  3698.  
  3699.    If the Next is different from the Next of the Up,
  3700.    then the Next node must have a Prev pointing at this node. */
  3701. validate_file (filename, tag_table)
  3702.      char *filename;
  3703.      TAG_ENTRY *tag_table;
  3704. {
  3705.   char *old_input_filename = input_filename;
  3706.   TAG_ENTRY *tags = tag_table;
  3707.  
  3708.   while (tags != (TAG_ENTRY *) NULL)
  3709.     {
  3710.       register TAG_ENTRY *temp_tag;
  3711.  
  3712.       input_filename = tags->filename;
  3713.       line_number = tags->line_no;
  3714.  
  3715.       /* If this node has a Next, then make sure that the Next exists. */
  3716.       if (tags->next)
  3717.     {
  3718.       validate (tags->next, tags->line_no, "Next");
  3719.  
  3720.       /* If the Next node exists, and there is no Up, then make
  3721.          sure that the Prev of the Next points back. */
  3722.       if (temp_tag = find_node (tags->next))
  3723.         {
  3724.           char *prev = temp_tag->prev;
  3725.           if (!prev || (stricmp (prev, tags->node) != 0))
  3726.         {
  3727.           line_error
  3728.             ("Node `%s''s Next field not pointed back to", tags->node);
  3729.           line_number = temp_tag->line_no;
  3730.           input_filename = temp_tag->filename;
  3731.           line_error
  3732.             ("This node (`%s') is the one with the bad `Prev'",
  3733.              temp_tag->node);
  3734.           input_filename = tags->filename;
  3735.           line_number = tags->line_no;
  3736.           temp_tag->flags |= PREV_ERROR;
  3737.         }
  3738.         }
  3739.     }
  3740.  
  3741.       /* Validate the Prev field if there is one, and we haven't already
  3742.      complained about it in some way.  You don't have to have a Prev
  3743.      field at this stage. */
  3744.       if (!(tags->flags & PREV_ERROR) && tags->prev)
  3745.     {
  3746.       int valid = validate (tags->prev, tags->line_no, "Prev");
  3747.  
  3748.       if (!valid)
  3749.         tags->flags |= PREV_ERROR;
  3750.       else
  3751.         {
  3752.           /* If the Prev field is not the same as the Up field,
  3753.          then the node pointed to by the Prev field must have
  3754.          a Next field which points to this node. */
  3755.           if (tags->up && (stricmp (tags->prev, tags->up) != 0))
  3756.         {
  3757.           temp_tag = find_node (tags->prev);
  3758.           if (!temp_tag->next ||
  3759.               (stricmp (temp_tag->next, tags->node) != 0))
  3760.             {
  3761.               line_error ("Node `%s''s Prev field not pointed back to",
  3762.                   tags->node);
  3763.               line_number = temp_tag->line_no;
  3764.               input_filename = temp_tag->filename;
  3765.               line_error
  3766.             ("This node (`%s') is the one with the bad `Next'",
  3767.              temp_tag->node);
  3768.               input_filename = tags->filename;
  3769.               line_number = tags->line_no;
  3770.               temp_tag->flags |= NEXT_ERROR;
  3771.             }
  3772.         }
  3773.         }
  3774.     }
  3775.  
  3776.       if (!tags->up && (stricmp (tags->node, "Top") != 0))
  3777.     line_error ("Node `%s' is missing an \"Up\" field", tags->node);
  3778.       else if (tags->up)
  3779.     {
  3780.       int valid = validate (tags->up, tags->line_no, "Up");
  3781.  
  3782.       /* If node X has Up: Y, then warn if Y fails to have a menu item
  3783.          or note pointing at X, if Y isn't of the form "(Y)". */
  3784.       if (valid && *tags->up != '(')
  3785.         {
  3786.           NODE_REF *nref, *tref, *list;
  3787.           NODE_REF *find_node_reference ();
  3788.  
  3789.           tref = (NODE_REF *) NULL;
  3790.           list = node_references;
  3791.  
  3792.           for (;;)
  3793.         {
  3794.           if (!(nref = find_node_reference (tags->node, list)))
  3795.             break;
  3796.  
  3797.           if (stricmp (nref->containing_node, tags->up) == 0)
  3798.             {
  3799.               if (nref->type != menu_reference)
  3800.             {
  3801.               tref = nref;
  3802.               list = nref->next;
  3803.             }
  3804.               else
  3805.             break;
  3806.             }
  3807.           list = nref->next;
  3808.         }
  3809.  
  3810.           if (!nref)
  3811.         {
  3812.           temp_tag = find_node (tags->up);
  3813.           line_number = temp_tag->line_no;
  3814.           filename = temp_tag->filename;
  3815.           if (!tref)
  3816.             line_error (
  3817. "`%s' has an Up field of `%s', but `%s' has no menu item for `%s'",
  3818.                 tags->node, tags->up, tags->up, tags->node);
  3819.           line_number = tags->line_no;
  3820.           filename = tags->filename;
  3821.         }
  3822.         }
  3823.     }
  3824.       tags = tags->next_ent;
  3825.     }
  3826.  
  3827.   validate_other_references (node_references);
  3828.   /* We have told the user about the references which didn't exist.
  3829.      Now tell him about the nodes which aren't referenced. */
  3830.  
  3831.   tags = tag_table;
  3832.   while (tags != (TAG_ENTRY *) NULL)
  3833.     {
  3834.       /* Special hack.  If the node in question appears to have
  3835.          been referenced more than REFERENCE_WARNING_LIMIT times,
  3836.          give a warning. */
  3837.       if (tags->touched > reference_warning_limit)
  3838.     {
  3839.       input_filename = tags->filename;
  3840.       line_number = tags->line_no;
  3841.       warning ("Node `%s' has been referenced %d times",
  3842.            tags->node, tags->touched);
  3843.     }
  3844.  
  3845.       if (tags->touched == 0)
  3846.     {
  3847.       input_filename = tags->filename;
  3848.       line_number = tags->line_no;
  3849.  
  3850.       /* Notice that the node "Top" is special, and doesn't have to
  3851.          be referenced. */
  3852.       if (stricmp (tags->node, "Top") != 0)
  3853.         warning ("Unreferenced node `%s'", tags->node);
  3854.     }
  3855.       tags = tags->next_ent;
  3856.     }
  3857.   input_filename = old_input_filename;
  3858. }
  3859.  
  3860. /* Return 1 if tag correctly validated, or 0 if not. */
  3861. validate (tag, line, label)
  3862.      char *tag;
  3863.      int line;
  3864.      char *label;
  3865. {
  3866.   TAG_ENTRY *result;
  3867.  
  3868.   /* If there isn't a tag to verify, or if the tag is in another file,
  3869.      then it must be okay. */
  3870.   if (!tag || !*tag || *tag == '(')
  3871.     return (1);
  3872.  
  3873.   /* Otherwise, the tag must exist. */
  3874.   result = find_node (tag);
  3875.  
  3876.   if (!result)
  3877.     {
  3878.       line_number = line;
  3879.       line_error (
  3880. "Validation error.  `%s' field points to node `%s', which doesn't exist",
  3881.           label, tag);
  3882.       return (0);
  3883.     }
  3884.   result->touched++;
  3885.   return (1);
  3886. }
  3887.  
  3888. /* Split large output files into a series of smaller files.  Each file
  3889.    is pointed to in the tag table, which then gets written out as the
  3890.    original file.  The new files have the same name as the original file
  3891.    with a "-num" attached.  SIZE is the largest number of bytes to allow
  3892.    in any single split file. */
  3893. split_file (filename, size)
  3894.      char *filename;
  3895.      int size;
  3896. {
  3897.   char *root_filename, *root_pathname;
  3898.   char *the_file, *filename_part ();
  3899.   struct stat fileinfo;
  3900.   char *the_header;
  3901.   int header_size;
  3902.  
  3903.   /* Can only do this to files with tag tables. */
  3904.   if (!tag_table)
  3905.     return;
  3906.  
  3907.   if (size == 0)
  3908.     size = DEFAULT_SPLIT_SIZE;
  3909.  
  3910.   if ((stat (filename, &fileinfo) != 0) ||
  3911.       (fileinfo.st_size < SPLIT_SIZE_THRESHOLD))
  3912.     return;
  3913.  
  3914.   the_file = find_and_load (filename);
  3915.   if (!the_file)
  3916.     return;
  3917.  
  3918.   root_filename = filename_part (filename);
  3919.   root_pathname = pathname_part (filename);
  3920.  
  3921.   if (!root_pathname)
  3922.     root_pathname = savestring ("");
  3923.  
  3924.   /* Start splitting the file.  Walk along the tag table
  3925.      outputting sections of the file.  When we have written
  3926.      all of the nodes in the tag table, make the top-level
  3927.      pointer file, which contains indirect pointers and
  3928.      tags for the nodes. */
  3929.   {
  3930.     int which_file = 1;
  3931.     TAG_ENTRY *tags = tag_table;
  3932.     char *indirect_info = (char *)NULL;
  3933.  
  3934.     /* Remember the `header' of this file.  The first tag in the file is
  3935.        the bottom of the header; the top of the file is the start. */
  3936.     the_header = (char *)xmalloc (1 + (header_size = (tags->position - 2)));
  3937.     bcopy (the_file, the_header, header_size);
  3938.  
  3939.     while (tags)
  3940.       {
  3941.     int file_top, file_bot, limit;
  3942.  
  3943.     /* Have to include the Control-_. */
  3944.     file_top = file_bot = tags->position - 2;
  3945.     limit = file_top + size;
  3946.  
  3947.     /* If the rest of this file is only one node, then
  3948.        that is the entire subfile. */
  3949.     if (!tags->next_ent)
  3950.       {
  3951.         int i = tags->position + 1;
  3952.         char last_char = the_file[i];
  3953.  
  3954.         while (i < fileinfo.st_size)
  3955.           {
  3956.         if ((the_file[i] == '\037') &&
  3957.             ((last_char == '\n') ||
  3958.              (last_char == '\014')))
  3959.           break;
  3960.         else
  3961.           last_char = the_file[i];
  3962.         i++;
  3963.           }
  3964.         file_bot = i;
  3965.         tags = tags->next_ent;
  3966.         goto write_region;
  3967.       }
  3968.  
  3969.     /* Otherwise, find the largest number of nodes that can fit in
  3970.        this subfile. */
  3971.     for (; tags; tags = tags->next_ent)
  3972.       {
  3973.         if (!tags->next_ent)
  3974.           {
  3975.         /* This entry is the last node.  Search forward for the end
  3976.                of this node, and that is the end of this file. */
  3977.         int i = tags->position + 1;
  3978.         char last_char = the_file[i];
  3979.  
  3980.         while (i < fileinfo.st_size)
  3981.           {
  3982.             if ((the_file[i] == '\037') &&
  3983.             ((last_char == '\n') ||
  3984.              (last_char == '\014')))
  3985.               break;
  3986.             else
  3987.               last_char = the_file[i];
  3988.             i++;
  3989.           }
  3990.         file_bot = i;
  3991.  
  3992.         if (file_bot < limit)
  3993.           {
  3994.             tags = tags->next_ent;
  3995.             goto write_region;
  3996.           }
  3997.         else
  3998.           {
  3999.             /* Here we want to write out everything before the last
  4000.                node, and then write the last node out in a file
  4001.                by itself. */
  4002.             file_bot = tags->position;
  4003.             goto write_region;
  4004.           }
  4005.           }
  4006.  
  4007.         if (tags->next_ent->position > limit)
  4008.           {
  4009.         if ((tags->position) - 2 == file_top)
  4010.           tags = tags->next_ent;
  4011.         file_bot = tags->position;
  4012.           write_region:
  4013.         {
  4014.           int fd;
  4015.           char *split_file = (char *)
  4016.             xmalloc (10
  4017.                  + strlen (root_pathname)
  4018.                  + strlen (root_filename));
  4019.           sprintf (split_file,
  4020.                "%s%s-%d", root_pathname, root_filename, which_file);
  4021.  
  4022.           if (((fd = open (split_file, O_WRONLY | O_TRUNC | O_CREAT, 0666)) < 0)
  4023.               || (write (fd, the_header, header_size) != header_size)
  4024.               || (write (fd, the_file + file_top, file_bot - file_top)
  4025.               != (file_bot - file_top))
  4026.               || ((close (fd)) < 0))
  4027.             {
  4028.               perror (split_file);
  4029.               close (fd);
  4030.               exit (FATAL);
  4031.             }
  4032.  
  4033.           if (!indirect_info)
  4034.             {
  4035.               indirect_info = the_file + file_top;
  4036.               sprintf (indirect_info, "\037\nIndirect:\n");
  4037.               indirect_info += strlen (indirect_info);
  4038.             }
  4039.  
  4040.           sprintf (indirect_info, "%s-%d: %d\n",
  4041.                root_filename, which_file, file_top);
  4042.  
  4043.           free (split_file);
  4044.           indirect_info += strlen (indirect_info);
  4045.           which_file++;
  4046.           break;
  4047.         }
  4048.           }
  4049.       }
  4050.       }
  4051.  
  4052.     /* We have sucessfully created the subfiles.  Now write out the
  4053.        original again.  We must use `output_stream', or
  4054.        write_tag_table_indirect () won't know where to place the output. */
  4055.     output_stream = fopen (filename, "w");
  4056.     if (!output_stream)
  4057.       {
  4058.     perror (filename);
  4059.     exit (FATAL);
  4060.       }
  4061.  
  4062.     {
  4063.       int distance = indirect_info - the_file;
  4064.       fwrite (the_file, 1, distance, output_stream);
  4065.  
  4066.       /* Inhibit newlines. */
  4067.       paragraph_is_open = false;
  4068.  
  4069.       write_tag_table_indirect ();
  4070.       fclose (output_stream);
  4071.       free (the_header);
  4072.       free (the_file);
  4073.       return;
  4074.     }
  4075.   }
  4076. }
  4077.  
  4078. /* Some menu hacking.  This is used to remember menu references while
  4079.    reading the input file.  After the output file has been written, if
  4080.    validation is on, then we use the contents of NODE_REFERENCES as a
  4081.    list of nodes to validate. */
  4082. char *
  4083. reftype_type_string (type)
  4084.      enum reftype type;
  4085. {
  4086.   switch (type)
  4087.     {
  4088.     case menu_reference:
  4089.       return ("Menu");
  4090.     case followed_reference:
  4091.       return ("Followed-Reference");
  4092.     default:
  4093.       return ("Internal-bad-reference-type");
  4094.     }
  4095. }
  4096.  
  4097. /* Remember this node name for later validation use. */
  4098. remember_node_reference (node, line, type)
  4099.      char *node;
  4100.      int line;
  4101.      enum reftype type;
  4102. {
  4103.   NODE_REF *temp = (NODE_REF *) xmalloc (sizeof (NODE_REF));
  4104.  
  4105.   temp->next = node_references;
  4106.   temp->node = savestring (node);
  4107.   temp->line_no = line;
  4108.   temp->section = current_section;
  4109.   temp->type = type;
  4110.   temp->containing_node = savestring (current_node);
  4111.   temp->filename = node_filename;
  4112.  
  4113.   node_references = temp;
  4114. }
  4115.  
  4116. validate_other_references (ref_list)
  4117.      register NODE_REF *ref_list;
  4118. {
  4119.   char *old_input_filename = input_filename;
  4120.  
  4121.   while (ref_list != (NODE_REF *) NULL)
  4122.     {
  4123.       input_filename = ref_list->filename;
  4124.       validate (ref_list->node, ref_list->line_no,
  4125.         reftype_type_string (ref_list->type));
  4126.       ref_list = ref_list->next;
  4127.     }
  4128.   input_filename = old_input_filename;
  4129. }
  4130.  
  4131. /* Find NODE in REF_LIST. */
  4132. NODE_REF *
  4133. find_node_reference (node, ref_list)
  4134.      char *node;
  4135.      register NODE_REF *ref_list;
  4136. {
  4137.   while (ref_list)
  4138.     {
  4139.       if (stricmp (node, ref_list->node) == 0)
  4140.     break;
  4141.       ref_list = ref_list->next;
  4142.     }
  4143.   return (ref_list);
  4144. }
  4145.  
  4146. free_node_references ()
  4147. {
  4148.   register NODE_REF *list, *temp;
  4149.  
  4150.   list = node_references;
  4151.  
  4152.   while (list)
  4153.     {
  4154.       temp = list;
  4155.       free (list->node);
  4156.       free (list->containing_node);
  4157.       list = list->next;
  4158.       free (temp);
  4159.     }
  4160.   node_references = (NODE_REF *) NULL;
  4161. }
  4162.  
  4163.   /* This function gets called at the start of every line while inside of
  4164.      a menu.  It checks to see if the line starts with "* ", and if so,
  4165.      remembers the node reference that this menu refers to.
  4166.      input_text_offset is at the \n just before the line start. */
  4167. #define menu_starter "* "
  4168. char *
  4169. glean_node_from_menu (remember_reference)
  4170.      int remember_reference;
  4171. {
  4172.   int i, orig_offset = input_text_offset;
  4173.   char *nodename;
  4174.  
  4175.   if (strncmp (&input_text[input_text_offset + 1],
  4176.            menu_starter,
  4177.            strlen (menu_starter)) != 0)
  4178.     return ((char *)NULL);
  4179.   else
  4180.     input_text_offset += strlen (menu_starter) + 1;
  4181.  
  4182.   get_until_in_line (":", &nodename);
  4183.   if (curchar () == ':')
  4184.     input_text_offset++;
  4185.   canon_white (nodename);
  4186.  
  4187.   if (curchar () == ':')
  4188.     goto save_node;
  4189.  
  4190.   free (nodename);
  4191.   get_rest_of_line (&nodename);
  4192.  
  4193.   /* Special hack: If the nodename follows the menu item name,
  4194.      then we have to read the rest of the line in order to find
  4195.      out what the nodename is.  But we still have to read the
  4196.      line later, in order to process any formatting commands that
  4197.      might be present.  So un-count the carriage return that has just
  4198.      been counted. */
  4199.   line_number--;
  4200.  
  4201.   canon_white (nodename);
  4202.   for (i = 0; i < strlen (nodename); i++)
  4203.     {
  4204.       if (nodename[i] == '\t' ||
  4205.       nodename[i] == '.' ||
  4206.       nodename[i] == ',')
  4207.     {
  4208.       nodename[i] = '\0';
  4209.       break;
  4210.     }
  4211.     }
  4212. save_node:
  4213.   input_text_offset = orig_offset;
  4214.   normalize_node_name (nodename);
  4215.   i = strlen (nodename);
  4216.   if (i && nodename[i - 1] == ':')
  4217.     nodename[i - 1] = '\0';
  4218.  
  4219.   if (remember_reference)
  4220.     {
  4221.       remember_node_reference (nodename, line_number, menu_reference);
  4222.       free (nodename);
  4223.       return ((char *)NULL);
  4224.     }
  4225.   else
  4226.     return (nodename);
  4227. }
  4228.  
  4229. cm_menu ()
  4230. {
  4231.   begin_insertion (menu);
  4232. }
  4233.  
  4234.  
  4235. /* **************************************************************** */
  4236. /*                                    */
  4237. /*            Cross Reference Hacking                */
  4238. /*                                    */
  4239. /* **************************************************************** */
  4240.  
  4241. char *
  4242. get_xref_token ()
  4243. {
  4244.   char *string;
  4245.  
  4246.   get_until_in_braces (",", &string);
  4247.   if (curchar () == ',')
  4248.     input_text_offset++;
  4249.   fix_whitespace (string);
  4250.   return (string);
  4251. }
  4252.  
  4253. int px_ref_flag = 0;        /* Controls initial output string. */
  4254.  
  4255. /* Make a cross reference. */
  4256. cm_xref (arg)
  4257. {
  4258.   if (arg == START)
  4259.     {
  4260.       char *arg1, *arg2, *arg3, *arg4, *arg5;
  4261.  
  4262.       arg1 = get_xref_token ();
  4263.       arg2 = get_xref_token ();
  4264.       arg3 = get_xref_token ();
  4265.       arg4 = get_xref_token ();
  4266.       arg5 = get_xref_token ();
  4267.  
  4268.       add_word_args ("%s", px_ref_flag ? "*note " : "*Note ");
  4269.  
  4270.       if (*arg5 || *arg4)
  4271.     {
  4272.       char *node_name;
  4273.  
  4274.       if (!*arg2)
  4275.         {
  4276.           if (*arg3)
  4277.         node_name = arg3;
  4278.           else
  4279.         node_name = arg1;
  4280.         }
  4281.       else
  4282.         node_name = arg2;
  4283.  
  4284.       execute_string ("%s: (%s)%s", node_name, arg4, arg1);
  4285.       return;
  4286.     }
  4287.       else
  4288.     remember_node_reference (arg1, line_number, followed_reference);
  4289.  
  4290.       if (*arg3)
  4291.     {
  4292.       if (!*arg2)
  4293.         execute_string ("%s: %s", arg3, arg1);
  4294.       else
  4295.         execute_string ("%s: %s", arg2, arg1);
  4296.       return;
  4297.     }
  4298.  
  4299.       if (*arg2)
  4300.     execute_string ("%s: %s", arg2, arg1);
  4301.       else
  4302.     execute_string ("%s::", arg1);
  4303.     }
  4304.   else
  4305.     {
  4306.  
  4307.       /* Check to make sure that the next non-whitespace character is either
  4308.          a period or a comma. input_text_offset is pointing at the "}" which
  4309.          ended the xref or pxref command. */
  4310.       int temp = input_text_offset + 1;
  4311.  
  4312.       if (output_paragraph[output_paragraph_offset - 2] == ':' &&
  4313.       output_paragraph[output_paragraph_offset - 1] == ':')
  4314.     return;
  4315.       while (temp < size_of_input_text)
  4316.     {
  4317.       if (cr_or_whitespace (input_text[temp]))
  4318.         temp++;
  4319.       else
  4320.         {
  4321.           if (input_text[temp] == '.' ||
  4322.           input_text[temp] == ',' ||
  4323.           input_text[temp] == '\t')
  4324.         return;
  4325.           else
  4326.         {
  4327.           line_error ("Cross-reference must be terminated with a period or a comma");
  4328.           return;
  4329.         }
  4330.         }
  4331.     }
  4332.     }
  4333. }
  4334.  
  4335. cm_pxref (arg)
  4336.      int arg;
  4337. {
  4338.   if (arg == START)
  4339.     {
  4340.       px_ref_flag++;
  4341.       cm_xref (arg);
  4342.       px_ref_flag--;
  4343.     }
  4344.   else
  4345.     add_char ('.');
  4346. }
  4347.  
  4348. cm_inforef (arg)
  4349.      int arg;
  4350. {
  4351.   if (arg == START)
  4352.     {
  4353.       char *node, *pname, *file;
  4354.  
  4355.       node = get_xref_token ();
  4356.       pname = get_xref_token ();
  4357.       file = get_xref_token ();
  4358.  
  4359.       execute_string ("*note %s: (%s)%s", pname, file, node);
  4360.     }
  4361. }
  4362.  
  4363. /* **************************************************************** */
  4364. /*                                    */
  4365. /*            Insertion Command Stubs                */
  4366. /*                                    */
  4367. /* **************************************************************** */
  4368.  
  4369. cm_quotation ()
  4370. {
  4371.   begin_insertion (quotation);
  4372. }
  4373.  
  4374. cm_example ()
  4375. {
  4376.   begin_insertion (example);
  4377. }
  4378.  
  4379. cm_smallexample ()
  4380. {
  4381.   begin_insertion (smallexample);
  4382. }
  4383.  
  4384. cm_lisp ()
  4385. {
  4386.   begin_insertion (lisp);
  4387. }
  4388.  
  4389. cm_smalllisp ()
  4390. {
  4391.   begin_insertion (smalllisp);
  4392. }
  4393.  
  4394. /* @cartouche/@end cartouche draws box with rounded corners in
  4395.    TeX output.  Right now, just a NOP insertion. */
  4396. cm_cartouche ()
  4397. {
  4398.   begin_insertion (cartouche);
  4399. }
  4400.  
  4401. cm_format ()
  4402. {
  4403.   begin_insertion (format);
  4404. }
  4405.  
  4406. cm_display ()
  4407. {
  4408.   begin_insertion (display);
  4409. }
  4410.  
  4411. cm_itemize ()
  4412. {
  4413.   begin_insertion (itemize);
  4414. }
  4415.  
  4416. cm_enumerate ()
  4417. {
  4418.   begin_insertion (enumerate);
  4419. }
  4420.  
  4421. cm_alphaenumerate ()
  4422. {
  4423.   begin_insertion (alphaenumerate);
  4424. }
  4425.  
  4426. cm_capsenumerate ()
  4427. {
  4428.   begin_insertion (capsenumerate);
  4429. }
  4430.  
  4431. cm_table ()
  4432. {
  4433.   begin_insertion (table);
  4434. }
  4435.  
  4436. cm_ftable ()
  4437. {
  4438.   begin_insertion (ftable);
  4439. }
  4440.  
  4441. cm_group ()
  4442. {
  4443.   begin_insertion (group);
  4444. }
  4445.  
  4446. cm_ifinfo ()
  4447. {
  4448.   begin_insertion (ifinfo);
  4449. }
  4450.  
  4451. /* Begin an insertion where the lines are not filled or indented. */
  4452. cm_flushleft ()
  4453. {
  4454.   begin_insertion (flushleft);
  4455. }
  4456.  
  4457. /* Begin an insertion where the lines are not filled, and each line is
  4458.    forced to the right-hand side of the page. */
  4459. cm_flushright ()
  4460. {
  4461.   begin_insertion (flushright);
  4462. }
  4463.  
  4464.  
  4465. /* **************************************************************** */
  4466. /*                                    */
  4467. /*              Conditional Handling                */
  4468. /*                                    */
  4469. /* **************************************************************** */
  4470.  
  4471. /* A structure which contains `defined' variables. */
  4472. typedef struct _defines {
  4473.   struct _defines *next;
  4474.   char *name;
  4475. } DEFINE;
  4476.  
  4477. /* The linked list of `set' defines. */
  4478. DEFINE *defines = (DEFINE *)NULL;
  4479.  
  4480. /* Add NAME to the list of `set' defines. */
  4481. set (name)
  4482.      char *name;
  4483. {
  4484.   DEFINE *temp;
  4485.  
  4486.   for (temp = defines; temp; temp = temp->next)
  4487.     if (strcmp (name, temp->name) == 0)
  4488.       return;
  4489.  
  4490.   temp = (DEFINE *)xmalloc (sizeof (DEFINE));
  4491.   temp->next = defines;
  4492.   temp->name = savestring (name);
  4493.   defines = temp;
  4494. }
  4495.  
  4496. /* Remove NAME from the list of `set' defines. */
  4497. clear (name)
  4498.      char *name;
  4499. {
  4500.   register DEFINE *temp, *last;
  4501.  
  4502.   last = (DEFINE *)NULL;
  4503.   temp = defines;
  4504.  
  4505.   while (temp)
  4506.     {
  4507.       if (strcmp (temp->name, name) == 0)
  4508.     {
  4509.       if (last)
  4510.         last->next = temp->next;
  4511.       else
  4512.         defines = temp->next;
  4513.  
  4514.       free (temp->name);
  4515.       free (temp);
  4516.       break;
  4517.     }
  4518.       last = temp;
  4519.       temp = temp->next;
  4520.     }
  4521. }
  4522.  
  4523. /* Return non-zero if NAME is present in the list of `set' defines. */
  4524. set_p (name)
  4525.      char *name;
  4526. {
  4527.   register DEFINE *temp;
  4528.  
  4529.   for (temp = defines; temp; temp = temp->next)
  4530.     if (strcmp (temp->name, name) == 0)
  4531.       return (1);
  4532.  
  4533.   return (0);
  4534. }
  4535.  
  4536. /* Conditionally parse based on the current command name. */
  4537. command_name_condition ()
  4538. {
  4539.   char discarder[128];
  4540.  
  4541.   sprintf (discarder, "\n@end %s", command);
  4542.   discard_until (discarder);
  4543.   discard_until ("\n");
  4544. }
  4545.  
  4546. #define SET    1
  4547. #define CLEAR    2
  4548. #define IFSET    3
  4549. #define IFCLEAR    4
  4550.  
  4551. /* Create a variable whose name is the rest of the line. */
  4552. cm_set ()
  4553. {
  4554.   handle_variable (SET);
  4555. }
  4556.  
  4557. /* Remove a variable whose name is the rest of the line. */
  4558. cm_clear ()
  4559. {
  4560.   handle_variable (CLEAR);
  4561. }
  4562.  
  4563. cm_ifset ()
  4564. {
  4565.   handle_variable (IFSET);
  4566. }
  4567.  
  4568. cm_ifclear ()
  4569. {
  4570.   handle_variable (IFCLEAR);
  4571. }
  4572.  
  4573. /* Set, clear, or conditionalize based on ACTION. */
  4574. handle_variable (action)
  4575.      int action;
  4576. {
  4577.   char *name;
  4578.  
  4579.   get_rest_of_line (&name);
  4580.   backup_input_pointer ();
  4581.   canon_white (name);
  4582.  
  4583.   if (!*name)
  4584.     line_error ("@%s requires a name", command);
  4585.   else
  4586.     {
  4587.       switch (action)
  4588.     {
  4589.     case SET:
  4590.       set (name);
  4591.       break;
  4592.  
  4593.     case CLEAR:
  4594.       clear (name);
  4595.       break;
  4596.  
  4597.     case IFSET:
  4598.       if (!set_p (name))
  4599.         {
  4600.           discard_until ("\n@end ifset");
  4601.           discard_until ("\n");
  4602.         }
  4603.       else
  4604.         begin_insertion (ifset);
  4605.       break;
  4606.  
  4607.     case IFCLEAR:
  4608.       if (set_p (name))
  4609.         {
  4610.           discard_until ("\n@end ifclear");
  4611.           discard_until ("\n");
  4612.         }
  4613.       else
  4614.         begin_insertion (ifclear);
  4615.       break;
  4616.     }
  4617.     }
  4618.   free (name);
  4619. }
  4620.  
  4621. /* **************************************************************** */
  4622. /*                                    */
  4623. /*            @itemx, @item                    */
  4624. /*                                    */
  4625. /* **************************************************************** */
  4626.  
  4627. /* Non-zero means a string is in execution, as opposed to a file. */
  4628. int executing_string = 0;
  4629.  
  4630. /* Execute the string produced by formatting the ARGs with FORMAT.  This
  4631.    is like submitting a new file with @include. */
  4632. execute_string (format, arg1, arg2, arg3, arg4, arg5)
  4633.      char *format;
  4634. {
  4635.   static char temp_string[4000];
  4636.   sprintf (temp_string, format, arg1, arg2, arg3, arg4, arg5);
  4637.   strcat (temp_string, "@bye\n");
  4638.   pushfile ();
  4639.   input_text_offset = 0;
  4640.   input_text = temp_string;
  4641.   input_filename = savestring (input_filename);
  4642.   size_of_input_text = strlen (temp_string);
  4643.  
  4644.   executing_string++;
  4645.   reader_loop ();
  4646.  
  4647.   popfile ();
  4648.   executing_string--;
  4649.  
  4650.   free_and_clear (&command);
  4651.   command = savestring ("not bye");
  4652. }
  4653.  
  4654. int itemx_flag = 0;
  4655.  
  4656. cm_itemx ()
  4657. {
  4658.   itemx_flag++;
  4659.   cm_item ();
  4660.   itemx_flag--;
  4661. }
  4662.  
  4663. cm_item ()
  4664. {
  4665.   char *rest_of_line, *item_func;
  4666.  
  4667.   /* Can only hack "@item" while inside of an insertion. */
  4668.   if (insertion_level)
  4669.     {
  4670.       INSERTION_ELT *stack = insertion_stack;
  4671.  
  4672.       get_rest_of_line (&rest_of_line);
  4673.       canon_white (rest_of_line);
  4674.       item_func = current_item_function ();
  4675.  
  4676.       /* Okay, do the right thing depending on which insertion function
  4677.      is active. */
  4678.  
  4679.     switch_top:
  4680.       switch (stack->insertion)
  4681.     {
  4682.     case ifinfo:
  4683.     case ifset:
  4684.     case ifclear:
  4685.     case cartouche:
  4686.       stack = stack->next;
  4687.       if (!stack)
  4688.         goto no_insertion;
  4689.       else
  4690.         goto switch_top;
  4691.       break;
  4692.  
  4693.     case menu:
  4694.     case quotation:
  4695.     case example:
  4696.     case smallexample:
  4697.     case lisp:
  4698.     case format:
  4699.     case display:
  4700.     case group:
  4701.       line_error ("The `@%s' command is meaningless within a `@%s' block",
  4702.               command,
  4703.               insertion_type_pname (current_insertion_type ()));
  4704.       break;
  4705.  
  4706.     case itemize:
  4707.     case enumerate:
  4708.     case alphaenumerate:
  4709.     case capsenumerate:
  4710.       if (itemx_flag)
  4711.         {
  4712.           line_error ("@itemx is not meaningful inside of a `%s' block",
  4713.               insertion_type_pname (current_insertion_type ()));
  4714.         }
  4715.       else
  4716.         {
  4717.           start_paragraph ();
  4718.           kill_self_indent (-1);
  4719.           filling_enabled = indented_fill = true;
  4720.  
  4721.           if (current_insertion_type () == itemize)
  4722.         {
  4723.           indent (output_column = current_indent - 2);
  4724.  
  4725.           /* I need some way to determine whether this command
  4726.              takes braces or not.  I believe the user can type
  4727.              either "@bullet" or "@bullet{}".  Of course, they
  4728.              can also type "o" or "#" or whatever else they want. */
  4729.           if (item_func && *item_func)
  4730.             {
  4731.               if (*item_func == '@')
  4732.             if (item_func[strlen (item_func) - 1] != '}')
  4733.               execute_string ("%s{}", item_func);
  4734.             else
  4735.               execute_string ("%s", item_func);
  4736.               else
  4737.             execute_string ("%s", item_func);
  4738.             }
  4739.           insert (' ');
  4740.           output_column++;
  4741.         }
  4742.           else if (current_insertion_type () == enumerate)
  4743.         number_item ();
  4744.           else
  4745.         letter_item ();
  4746.  
  4747.           /* Special hack.  This makes close paragraph ignore you until
  4748.          the start_paragraph () function has been called. */
  4749.           must_start_paragraph = 1;
  4750.         }
  4751.       break;
  4752.  
  4753.     case table:
  4754.     case ftable:
  4755.       {
  4756.         /* Get rid of extra characters. */
  4757.         kill_self_indent (-1);
  4758.  
  4759.         /* close_paragraph () almost does what we want.  The problem
  4760.            is when paragraph_is_open, and last_char_was_newline, and
  4761.            the last newline has been turned into a space, because
  4762.            filling_enabled. I handle it here. */
  4763.         if (last_char_was_newline && filling_enabled && paragraph_is_open)
  4764.           insert ('\n');
  4765.         close_paragraph ();
  4766.  
  4767.         /* Indent on a new line, but back up one indentation level. */
  4768.         /* force existing indentation. */
  4769.         add_char ('i');
  4770.         output_paragraph_offset--;
  4771.         kill_self_indent (default_indentation_increment + 1);
  4772.  
  4773.         /* Add item's argument to the line. */
  4774.         filling_enabled = false;
  4775.         if (!item_func && !(*item_func))
  4776.           execute_string ("%s", rest_of_line);
  4777.         else
  4778.           execute_string ("%s{%s}", item_func, rest_of_line);
  4779.  
  4780.         if (current_insertion_type () == ftable)
  4781.           execute_string ("@findex %s\n", rest_of_line);
  4782.  
  4783.         /* Start a new line, and let start_paragraph ()
  4784.            do the indenting of it for you. */
  4785.         close_single_paragraph ();
  4786.         indented_fill = filling_enabled = true;
  4787.       }
  4788.     }
  4789.       free (rest_of_line);
  4790.     }
  4791.   else
  4792.     {
  4793.     no_insertion:
  4794.       line_error ("@%s found outside of an insertion block", command);
  4795.     }
  4796. }
  4797.  
  4798.  
  4799. /* **************************************************************** */
  4800. /*                                    */
  4801. /*            Defun and Friends                   */
  4802. /*                                    */
  4803. /* **************************************************************** */
  4804.  
  4805. #define DEFUN_SELF_DELIMITING(c)                    \
  4806.   (((c) == '(')                                \
  4807.    || ((c) == ')')                            \
  4808.    || ((c) == '[')                            \
  4809.    || ((c) == ']'))
  4810.  
  4811. struct token_accumulator
  4812. {
  4813.   unsigned int length;
  4814.   unsigned int index;
  4815.   char ** tokens;
  4816. };
  4817.  
  4818. void
  4819. initialize_token_accumulator (accumulator)
  4820.      struct token_accumulator * accumulator;
  4821. {
  4822.   (accumulator -> length) = 0;
  4823.   (accumulator -> index) = 0;
  4824.   (accumulator -> tokens) = NULL;
  4825. }
  4826.  
  4827. void
  4828. accumulate_token (accumulator, token)
  4829.      struct token_accumulator * accumulator;
  4830.      char * token;
  4831. {
  4832.   if ((accumulator -> index) >= (accumulator -> length))
  4833.     {
  4834.       (accumulator -> length) += 10;
  4835.       (accumulator -> tokens) =
  4836.     ((char **)
  4837.      (xrealloc ((accumulator -> tokens),
  4838.             ((accumulator -> length) * (sizeof (char *))))));
  4839.     }
  4840.   ((accumulator -> tokens) [accumulator -> index]) = token;
  4841.   (accumulator -> index) += 1;
  4842. }
  4843.  
  4844. char *
  4845. copy_substring (start, end)
  4846.      char * start;
  4847.      char * end;
  4848. {
  4849.   char * result = ((char *) (xmalloc ((end - start) + 1)));
  4850.   char * scan = start;
  4851.   char * scan_result = result;
  4852.   while (scan < end)
  4853.     (*scan_result++) = (*scan++);
  4854.   (*scan_result) = '\0';
  4855.   return (result);
  4856. }
  4857.  
  4858. /* Given `string' pointing at an open brace, skip forward and return a
  4859.    pointer to just past the matching close brace. */
  4860. int
  4861. scan_group_in_string (string_pointer)
  4862.      char ** string_pointer;
  4863. {
  4864.   register int c;
  4865.   register char * scan_string = ((*string_pointer) + 1);
  4866.   register unsigned int level = 1;
  4867.  
  4868.   while (1)
  4869.     {
  4870.       if (level == 0)
  4871.     {
  4872.       (*string_pointer) = scan_string;
  4873.       return (1);
  4874.     }
  4875.       c = (*scan_string++);
  4876.       if (c == '\0')
  4877.     {
  4878.       /* Tweak line_number to compensate for fact that
  4879.          we gobbled the whole line before coming here. */
  4880.       line_number -= 1;
  4881.       line_error ("Missing `}' in @def arg");
  4882.       line_number += 1;
  4883.       (*string_pointer) = (scan_string - 1);
  4884.       return (0);
  4885.     }
  4886.       if (c == '{')
  4887.     level += 1;
  4888.       if (c == '}')
  4889.     level -= 1;
  4890.     }
  4891. }
  4892.  
  4893. /* Return a list of tokens from the contents of `string'.
  4894.    Commands and brace-delimited groups count as single tokens.
  4895.    Contiguous whitespace characters are converted to a token
  4896.    consisting of a single space. */
  4897. char **
  4898. args_from_string (string)
  4899.      char *string;
  4900. {
  4901.   struct token_accumulator accumulator;
  4902.   register char * scan_string = string;
  4903.   char * token_start;
  4904.   char * token_end;
  4905.  
  4906.   initialize_token_accumulator (&accumulator);
  4907.   while ((*scan_string) != '\0')
  4908.     {
  4909.       /* Replace arbitrary whitespace by a single space. */
  4910.       if (whitespace (*scan_string))
  4911.     {
  4912.       scan_string += 1;
  4913.       while (whitespace (*scan_string))
  4914.         scan_string += 1;
  4915.       accumulate_token ((&accumulator), (savestring (" ")));
  4916.       continue;
  4917.     }
  4918.  
  4919.       /* Commands count as single tokens. */
  4920.       if ((*scan_string) == COMMAND_PREFIX)
  4921.     {
  4922.       token_start = scan_string;
  4923.       scan_string += 1;
  4924.       if (self_delimiting (*scan_string))
  4925.         scan_string += 1;
  4926.       else
  4927.         {
  4928.           register int c;
  4929.           while (1)
  4930.         {
  4931.           c = (*scan_string++);
  4932.            if ((c == '\0') || (c == '{') || (whitespace (c)))
  4933.             {
  4934.               scan_string -= 1;
  4935.               break;
  4936.             }
  4937.         }
  4938.  
  4939.           if ((*scan_string) == '{')
  4940.         {
  4941.           char *s = scan_string;
  4942.           (void) scan_group_in_string (&s);
  4943.           scan_string = s;
  4944.         }
  4945.         }
  4946.       token_end = scan_string;
  4947.     }
  4948.  
  4949.       /* Parentheses and brackets are self-delimiting. */
  4950.       else if (DEFUN_SELF_DELIMITING (*scan_string))
  4951.     {
  4952.       token_start = scan_string;
  4953.       scan_string += 1;
  4954.       token_end = scan_string;
  4955.     }
  4956.  
  4957.       /* Open brace introduces a group that is a single token. */
  4958.       else if ((*scan_string) == '{')
  4959.     {
  4960.       char * s = scan_string;
  4961.       int balanced = (scan_group_in_string (&s));
  4962.       token_start = (scan_string + 1);
  4963.       scan_string = s;
  4964.       token_end = (balanced ? (scan_string - 1) : scan_string);
  4965.     }
  4966.  
  4967.       /* Otherwise a token is delimited by whitespace, parentheses,
  4968.      brackets, or braces. */
  4969.       else
  4970.     {
  4971.       int allow_brace_gathering = 0;
  4972.       int brace_level = 0;
  4973.  
  4974.       token_start = scan_string;
  4975.  
  4976.       while (1)
  4977.         {
  4978.           register int c = (*scan_string++);
  4979.  
  4980.           if (!c ||
  4981.           (!brace_level &&
  4982.            (whitespace (c) ||
  4983.             DEFUN_SELF_DELIMITING (c) ||
  4984.             ((!allow_brace_gathering) && c == '{') ||
  4985.             (c == '}'))))
  4986.         {
  4987.           scan_string--;
  4988.           break;
  4989.         }
  4990.  
  4991.           /* If we encounter a command imbedded within a token,
  4992.          then that command (and it's associated braces) are
  4993.          part of the token that we gathering. */
  4994.           if (c == COMMAND_PREFIX && !self_delimiting (*scan_string))
  4995.         {
  4996.           allow_brace_gathering++;
  4997.           continue;
  4998.         }
  4999.  
  5000.           if (allow_brace_gathering)
  5001.         {
  5002.           if (c == '{')
  5003.             brace_level++;
  5004.           else
  5005.             if (c == '}')
  5006.               {
  5007.             if (--brace_level == 0)
  5008.               allow_brace_gathering = 0;
  5009.               }
  5010.         }
  5011.         }
  5012.       token_end = scan_string;
  5013.     }
  5014.  
  5015.       accumulate_token
  5016.     ((&accumulator), (copy_substring (token_start, token_end)));
  5017.     }
  5018.   accumulate_token ((&accumulator), NULL);
  5019.   return (accumulator . tokens);
  5020. }
  5021.  
  5022. void
  5023. process_defun_args (defun_args, auto_var_p)
  5024.      char ** defun_args;
  5025.      int auto_var_p;
  5026. {
  5027.   int pending_space = 0;
  5028.   while (1)
  5029.     {
  5030.       char * defun_arg = (*defun_args++);
  5031.       if (defun_arg == NULL)
  5032.     break;
  5033.       if ((defun_arg[0]) == ' ')
  5034.     {
  5035.       pending_space = 1;
  5036.       continue;
  5037.     }
  5038.       if (pending_space)
  5039.     {
  5040.       add_char (' ');
  5041.       pending_space = 0;
  5042.     }
  5043.       if (DEFUN_SELF_DELIMITING (defun_arg[0]))
  5044.     add_char (defun_arg[0]);
  5045.       else if ((defun_arg[0]) == '&')
  5046.     add_word (defun_arg);
  5047.       else if ((defun_arg[0]) == COMMAND_PREFIX)
  5048.     execute_string ("%s", defun_arg);
  5049.       else if (auto_var_p)
  5050.     execute_string ("@var{%s}", defun_arg);
  5051.       else
  5052.     add_word (defun_arg);
  5053.     }
  5054. }
  5055.  
  5056. char *
  5057. next_nonwhite_defun_arg (arg_pointer)
  5058.      char ***arg_pointer;
  5059. {
  5060.   char **scan = (*arg_pointer);
  5061.   char *arg = (*scan++);
  5062.  
  5063.   if ((arg != 0) && ((*arg) == ' '))
  5064.     arg = (*scan++);
  5065.  
  5066.   if (arg == 0)
  5067.     scan -= 1;
  5068.  
  5069.   (*arg_pointer) = scan;
  5070.  
  5071.   return ((arg == 0) ? "" : arg);
  5072. }
  5073.  
  5074. /* Make the defun type insertion.
  5075.    TYPE says which insertion this is.
  5076.    X_P says not to start a new insertion if non-zero. */
  5077. void
  5078. defun_internal (type, x_p)
  5079.      enum insertion_type type;
  5080.      int x_p;
  5081. {
  5082.   enum insertion_type base_type;
  5083.   char **defun_args, **scan_args;
  5084.   char *category, *defined_name, *type_name, *type_name2;
  5085.  
  5086.   {
  5087.     char *line;
  5088.     get_rest_of_line (&line);
  5089.     defun_args = (args_from_string (line));
  5090.     free (line);
  5091.   }
  5092.  
  5093.   scan_args = defun_args;
  5094.  
  5095.   switch (type)
  5096.     {
  5097.     case defun:
  5098.       category = "Function";
  5099.       base_type = deffn;
  5100.       break;
  5101.     case defmac:
  5102.       category = "Macro";
  5103.       base_type = deffn;
  5104.       break;
  5105.     case defspec:
  5106.       category = "Special Form";
  5107.       base_type = deffn;
  5108.       break;
  5109.     case defvar:
  5110.       category = "Variable";
  5111.       base_type = defvr;
  5112.       break;
  5113.     case defopt:
  5114.       category = "User Option";
  5115.       base_type = defvr;
  5116.       break;
  5117.     case deftypefun:
  5118.       category = "Function";
  5119.       base_type = deftypefn;
  5120.       break;
  5121.     case deftypevar:
  5122.       category = "Variable";
  5123.       base_type = deftypevr;
  5124.       break;
  5125.     case defivar:
  5126.       category = "Instance Variable";
  5127.       base_type = defcv;
  5128.       break;
  5129.     case defmethod:
  5130.       category = "Method";
  5131.       base_type = defop;
  5132.       break;
  5133.     case deftypemethod:
  5134.       category = "Method";
  5135.       base_type = deftypemethod;
  5136.       break;
  5137.     default:
  5138.       category = (next_nonwhite_defun_arg (&scan_args));
  5139.       base_type = type;
  5140.       break;
  5141.     }
  5142.  
  5143.   if ((base_type == deftypefn)
  5144.       || (base_type == deftypevr)
  5145.       || (base_type == defcv)
  5146.       || (base_type == defop)
  5147.       || (base_type == deftypemethod))
  5148.     type_name = next_nonwhite_defun_arg (&scan_args);
  5149.  
  5150.   if (base_type == deftypemethod)
  5151.     type_name2 = next_nonwhite_defun_arg (&scan_args);
  5152.  
  5153.   defined_name = next_nonwhite_defun_arg (&scan_args);
  5154.  
  5155.   /* This hack exists solely for the purposes of formatting the texinfo
  5156.      manual.  I couldn't think of a better way.  The token might be
  5157.      a simple @@ followed immediately by more text.  If this is the case,
  5158.      then the next defun arg is part of this one, and we should concatenate
  5159.      them. */
  5160.   if (*scan_args && **scan_args && !whitespace (**scan_args) &&
  5161.       (strcmp (defined_name, "@@") == 0))
  5162.     {
  5163.       char *tem = (char *)xmalloc (3 + strlen (scan_args[0]));
  5164.  
  5165.       sprintf (tem, "@@%s", scan_args[0]);
  5166.  
  5167.       free (scan_args[0]);
  5168.       scan_args[0] = tem;
  5169.       scan_args++;
  5170.       defined_name = tem;
  5171.     }
  5172.  
  5173.   if (!x_p)
  5174.     begin_insertion (type);
  5175.  
  5176.   /* Write the definition header line.
  5177.      This should start at the normal indentation.  */
  5178.   current_indent -= default_indentation_increment;
  5179.   start_paragraph ();
  5180.  
  5181.   switch (base_type)
  5182.     {
  5183.     case deffn:
  5184.     case defvr:
  5185.     case deftp:
  5186.       execute_string (" * %s: %s", category, defined_name);
  5187.       break;
  5188.     case deftypefn:
  5189.     case deftypevr:
  5190.       execute_string (" * %s: %s %s", category, type_name, defined_name);
  5191.       break;
  5192.     case defcv:
  5193.       execute_string (" * %s of %s: %s", category, type_name, defined_name);
  5194.       break;
  5195.     case defop:
  5196.       execute_string (" * %s on %s: %s", category, type_name, defined_name);
  5197.       break;
  5198.     case deftypemethod:
  5199.       execute_string (" * %s on %s: %s %s", category, type_name, type_name2,
  5200.               defined_name);
  5201.       break;
  5202.     }
  5203.   current_indent += default_indentation_increment;
  5204.  
  5205.   /* Now process the function arguments, if any.
  5206.      If these carry onto the next line, they should be indented by two
  5207.      increments to distinguish them from the body of the definition,
  5208.      which is indented by one increment.  */
  5209.   current_indent += default_indentation_increment;
  5210.  
  5211.   switch (base_type)
  5212.     {
  5213.     case deffn:
  5214.     case defop:
  5215.       process_defun_args (scan_args, 1);
  5216.       break;
  5217.     case deftp:
  5218.     case deftypefn:
  5219.     case deftypemethod:
  5220.       process_defun_args (scan_args, 0);
  5221.       break;
  5222.     }
  5223.   current_indent -= default_indentation_increment;
  5224.   close_single_paragraph ();
  5225.  
  5226.   /* Make an entry in the appropriate index. */
  5227.   switch (base_type)
  5228.     {
  5229.     case deffn:
  5230.     case deftypefn:
  5231.       execute_string ("@findex %s\n", defined_name);
  5232.       break;
  5233.     case defvr:
  5234.     case deftypevr:
  5235.     case defcv:
  5236.       execute_string ("@vindex %s\n", defined_name);
  5237.       break;
  5238.     case defop:
  5239.     case deftypemethod:
  5240.       execute_string ("@findex %s on %s\n", defined_name, type_name);
  5241.       break;
  5242.     case deftp:
  5243.       execute_string ("@tindex %s\n", defined_name);
  5244.       break;
  5245.     }
  5246.  
  5247.   /* Deallocate the token list. */
  5248.   scan_args = defun_args;
  5249.   while (1)
  5250.     {
  5251.       char * arg = (*scan_args++);
  5252.       if (arg == NULL)
  5253.     break;
  5254.       free (arg);
  5255.     }
  5256.   free (defun_args);
  5257. }
  5258.  
  5259. /* Add an entry for a function, macro, special form, variable, or option.
  5260.    If the name of the calling command ends in `x', then this is an extra
  5261.    entry included in the body of an insertion of the same type. */
  5262. cm_defun ()
  5263. {
  5264.   int x_p;
  5265.   enum insertion_type type;
  5266.   char *temp = savestring (command);
  5267.  
  5268.   x_p = (command[strlen (command) - 1] == 'x');
  5269.  
  5270.   if (x_p)
  5271.     temp[strlen (temp) - 1] = '\0';
  5272.  
  5273.   type = find_type_from_name (temp);
  5274.   free (temp);
  5275.  
  5276.   /* If we are adding to an already existing insertion, then make sure
  5277.      that we are already in an insertion of type TYPE. */
  5278.   if (x_p &&
  5279.       (!insertion_level || insertion_stack->insertion != type))
  5280.     {
  5281.       line_error ("Must be in a `%s' insertion in order to use `%s'x",
  5282.           command, command);
  5283.       discard_until ("\n");
  5284.       return;
  5285.     }
  5286.  
  5287.   defun_internal (type, x_p);
  5288. }
  5289.  
  5290. /* End existing insertion block. */
  5291. cm_end ()
  5292. {
  5293.   char *temp;
  5294.   enum insertion_type type;
  5295.  
  5296.   if (!insertion_level)
  5297.     {
  5298.       line_error ("Unmatched `@%s'", command);
  5299.       return;
  5300.     }
  5301.  
  5302.   get_rest_of_line (&temp);
  5303.   canon_white (temp);
  5304.  
  5305.   if (strlen (temp) == 0)
  5306.     line_error ("`@%s' needs something after it", command);
  5307.  
  5308.   type = find_type_from_name (temp);
  5309.  
  5310.   if (type == bad_type)
  5311.     {
  5312.       line_error ("Bad argument to `%s', `%s', using `%s'",
  5313.        command, temp, insertion_type_pname (current_insertion_type ()));
  5314.     }
  5315.   end_insertion (type);
  5316.   free (temp);
  5317. }
  5318.  
  5319.  
  5320. /* **************************************************************** */
  5321. /*                                    */
  5322. /*            Other Random Commands                   */
  5323. /*                                    */
  5324. /* **************************************************************** */
  5325.  
  5326. /* This says to inhibit the indentation of the next paragraph, but
  5327.    not of following paragraphs.  */
  5328. cm_noindent ()
  5329. {
  5330.   if (!inhibit_paragraph_indentation)
  5331.     inhibit_paragraph_indentation = -1;
  5332. }
  5333.  
  5334. /* I don't know exactly what to do with this.  Should I allow
  5335.    someone to switch filenames in the middle of output?  Since the
  5336.    file could be partially written, this doesn't seem to make sense.
  5337.    Another option: ignore it, since they don't *really* want to
  5338.    switch files.  Finally, complain, or at least warn. */
  5339. cm_setfilename ()
  5340. {
  5341.   char *filename;
  5342.   get_rest_of_line (&filename);
  5343.   /* warning ("`@%s %s' encountered and ignored", command, filename); */
  5344.   free (filename);
  5345. }
  5346.  
  5347. cm_comment ()
  5348. {
  5349.   discard_until ("\n");
  5350. }
  5351.  
  5352. /* @br can be immediately followed by `{}', so we have to read those here.
  5353.    It should simply close the paragraph. */
  5354. cm_br ()
  5355. {
  5356.   if (looking_at ("{}"))
  5357.     input_text_offset += 2;
  5358.  
  5359.   if (curchar () == '\n')
  5360.     {
  5361.       input_text_offset++;
  5362.       line_number++;
  5363.     }
  5364.  
  5365.   close_paragraph ();
  5366. }
  5367.  
  5368.  /* Insert the number of blank lines passed as argument. */
  5369. cm_sp ()
  5370. {
  5371.   int lines;
  5372.   char *line;
  5373.  
  5374.   get_rest_of_line (&line);
  5375.  
  5376.   sscanf (line, "%d", &lines);
  5377.   while (lines--)
  5378.     add_char ('\n');
  5379.   free (line);
  5380. }
  5381.  
  5382. cm_settitle ()
  5383. {
  5384.   discard_until ("\n");
  5385. }
  5386.  
  5387. cm_need ()
  5388. {
  5389.   discard_until ("\n");
  5390. }
  5391.  
  5392. cm_headings ()
  5393. {
  5394.   discard_until ("\n");
  5395. }
  5396.  
  5397. /* Start a new line with just this text on it.
  5398.    Then center the line of text.
  5399.    This always ends the current paragraph. */
  5400. cm_center ()
  5401. {
  5402.   char *line;
  5403.  
  5404.   close_paragraph ();
  5405.   filling_enabled = indented_fill = false;
  5406.  
  5407.   get_rest_of_line (&line);
  5408.  
  5409.   if (strlen (line) < fill_column)
  5410.     {
  5411.       int i = (fill_column - strlen (line)) / 2;
  5412.       while (i--)
  5413.     insert (' ');
  5414.     }
  5415.   execute_string (line);
  5416.   free (line);
  5417.   insert ('\n');
  5418.   close_paragraph ();
  5419.   filling_enabled = true;
  5420. }
  5421.  
  5422. /* Show what an expression returns. */
  5423. cm_result (arg)
  5424.      int arg;
  5425. {
  5426.   if (arg == END)
  5427.     add_word ("=>");
  5428. }
  5429.  
  5430. /* What an expression expands to. */
  5431. cm_expansion (arg)
  5432.      int arg;
  5433. {
  5434.   if (arg == END)
  5435.     add_word ("==>");
  5436. }
  5437.  
  5438. /* Indicates two expressions are equivalent. */
  5439. cm_equiv (arg)
  5440.      int arg;
  5441. {
  5442.   if (arg == END)
  5443.     add_word ("==");
  5444. }
  5445.  
  5446. /* What an expression may print. */
  5447. cm_print (arg)
  5448.      int arg;
  5449. {
  5450.   if (arg == END)
  5451.     add_word ("-|");
  5452. }
  5453.  
  5454. /* An error signaled. */
  5455. cm_error (arg)
  5456.      int arg;
  5457. {
  5458.   if (arg == END)
  5459.     add_word ("error-->");
  5460. }
  5461.  
  5462. /* The location of point in an example of a buffer. */
  5463. cm_point (arg)
  5464.      int arg;
  5465. {
  5466.   if (arg == END)
  5467.     add_word ("-!-");
  5468. }
  5469.  
  5470. /* Start a new line with just this text on it.
  5471.    The text is outdented one level if possible. */
  5472. cm_exdent ()
  5473. {
  5474.   char *line;
  5475.   int i = current_indent;
  5476.  
  5477.   if (current_indent)
  5478.     current_indent -= default_indentation_increment;
  5479.  
  5480.   get_rest_of_line (&line);
  5481.   close_single_paragraph ();
  5482.   add_word_args ("%s", line);
  5483.   current_indent = i;
  5484.   free (line);
  5485.   close_single_paragraph ();
  5486. }
  5487.  
  5488. cm_include ()
  5489. {
  5490.   cm_infoinclude ();
  5491. }
  5492.  
  5493. /* Remember this file, and move onto the next. */
  5494. cm_infoinclude ()
  5495. {
  5496.   char *filename;
  5497.  
  5498.   close_paragraph ();
  5499.   get_rest_of_line (&filename);
  5500.   pushfile ();
  5501.  
  5502.   /* In verbose mode we print info about including another file. */
  5503.   if (verbose_mode)
  5504.     {
  5505.       register int i = 0;
  5506.       register FSTACK *stack = filestack;
  5507.  
  5508.       for (i = 0, stack = filestack; stack; stack = stack->next, i++);
  5509.  
  5510.       i *= 2;
  5511.  
  5512.       printf ("%*s", i, "");
  5513.       printf ("%c%s %s\n", COMMAND_PREFIX, command, filename);
  5514.       fflush (stdout);
  5515.     }
  5516.  
  5517.   if (!find_and_load (filename))
  5518.     {
  5519.       char *path = pathname_part(input_filename);
  5520.       char *tmp = strcat(strcat(strcpy(xmalloc(strlen(path) + 1 + strlen(filename)),
  5521.                        path),
  5522.                 "/"),
  5523.              filename);
  5524.  
  5525.       if (!find_and_load(tmp))
  5526.     {
  5527.       extern int errno, sys_nerr;
  5528.       popfile ();
  5529.  
  5530.       /* Cannot "@include foo", in line 5 of "/wh/bar". */
  5531.       line_error ("`%c%s %s': %s", COMMAND_PREFIX, command, filename,
  5532.               ((errno < sys_nerr) ?
  5533.                strerror (errno) : "Unknown file system error"));
  5534.         }
  5535.  
  5536.       free(tmp);
  5537.       free(path);
  5538.     }
  5539.   free (filename);
  5540. }
  5541.  
  5542. /* The other side of a malformed expression. */
  5543. misplaced_brace ()
  5544. {
  5545.   line_error ("Misplaced `}'");
  5546. }
  5547.  
  5548. /* Don't let the filling algorithm insert extra whitespace here. */
  5549. cm_force_abbreviated_whitespace ()
  5550. {
  5551. }
  5552.  
  5553. /* Make the output paragraph end the sentence here, even though it
  5554.    looks like it shouldn't.  This also inserts the character which
  5555.    invoked it. */
  5556. cm_force_sentence_end ()
  5557. {
  5558.   add_char (META ((*command)));
  5559. }
  5560.  
  5561. /* Signals end of processing.  Easy to make this happen. */
  5562. cm_bye ()
  5563. {
  5564.   input_text_offset = size_of_input_text;
  5565. }
  5566.  
  5567. cm_asis ()
  5568. {
  5569. }
  5570.  
  5571. cm_math ()
  5572. {
  5573. }
  5574.  
  5575. cm_setchapternewpage ()
  5576. {
  5577.   discard_until ("\n");
  5578. }
  5579.  
  5580. cm_smallbook ()
  5581. {
  5582.   discard_until ("\n");
  5583. }
  5584.  
  5585. /* **************************************************************** */
  5586. /*                                    */
  5587. /*            Indexing Stuff                    */
  5588. /*                                    */
  5589. /* **************************************************************** */
  5590.  
  5591.  
  5592. /* An index element... */
  5593. typedef struct index_elt
  5594. {
  5595.   struct index_elt *next;
  5596.   char *entry;            /* The index entry itself. */
  5597.   char *node;            /* The node from whence it came. */
  5598.   int code;            /* Non-zero means add `@code{...}' when
  5599.                    printing this element. */
  5600.   int defining_line;        /* Line number where this entry was written. */
  5601. } INDEX_ELT;
  5602.  
  5603. /* A list of short-names for each index, and the index to that index in our
  5604.    index array, the_indices.  In addition, for each index, it is remembered
  5605.    whether that index is a code index or not.  Code indices have @code{}
  5606.    inserted around the first word when they are printed with printindex. */
  5607. typedef struct
  5608. {
  5609.   char *name;
  5610.   int index;
  5611.   int code;
  5612. } INDEX_ALIST;
  5613.  
  5614. INDEX_ALIST **name_index_alist = (INDEX_ALIST **) NULL;
  5615.  
  5616. /* An array of pointers.  Each one is for a different index.  The
  5617.    "synindex" command changes which array slot is pointed to by a
  5618.    given "index". */
  5619. INDEX_ELT **the_indices = (INDEX_ELT **) NULL;
  5620.  
  5621. /* The number of defined indices. */
  5622. int defined_indices = 0;
  5623.  
  5624. /* We predefine these. */
  5625. #define program_index 0
  5626. #define function_index 1
  5627. #define concept_index 2
  5628. #define variable_index 3
  5629. #define datatype_index 4
  5630. #define key_index 5
  5631.  
  5632. init_indices ()
  5633. {
  5634.   int i;
  5635.  
  5636.   /* Create the default data structures. */
  5637.  
  5638.   /* Initialize data space. */
  5639.   if (!the_indices)
  5640.     {
  5641.       the_indices = (INDEX_ELT **) xmalloc ((1 + defined_indices) *
  5642.                         sizeof (INDEX_ELT *));
  5643.       the_indices[defined_indices] = (INDEX_ELT *) NULL;
  5644.  
  5645.       name_index_alist = (INDEX_ALIST **) xmalloc ((1 + defined_indices) *
  5646.                            sizeof (INDEX_ALIST *));
  5647.       name_index_alist[defined_indices] = (INDEX_ALIST *) NULL;
  5648.     }
  5649.  
  5650.   /* If there were existing indices, get rid of them now. */
  5651.   for (i = 0; i < defined_indices; i++)
  5652.     undefindex (name_index_alist[i]->name);
  5653.  
  5654.   /* Add the default indices. */
  5655.   defindex ("pg", 0);
  5656.   defindex ("fn", 1);        /* "fn" is a code index.  */
  5657.   defindex ("cp", 0);
  5658.   defindex ("vr", 0);
  5659.   defindex ("tp", 0);
  5660.   defindex ("ky", 0);
  5661.  
  5662. }
  5663.  
  5664. /* Find which element in the known list of indices has this name.
  5665.    Returns -1 if NAME isn't found. */
  5666. int
  5667. find_index_offset (name)
  5668.      char *name;
  5669. {
  5670.   register int i;
  5671.   for (i = 0; i < defined_indices; i++)
  5672.     if (name_index_alist[i] &&
  5673.     stricmp (name, name_index_alist[i]->name) == 0)
  5674.       return (name_index_alist[i]->index);
  5675.   return (-1);
  5676. }
  5677.  
  5678. /* Return a pointer to the entry of (name . index) for this name.
  5679.    Return NULL if the index doesn't exist. */
  5680. INDEX_ALIST *
  5681. find_index (name)
  5682.      char *name;
  5683. {
  5684.   int offset = find_index_offset (name);
  5685.   if (offset > -1)
  5686.     return (name_index_alist[offset]);
  5687.   else
  5688.     return ((INDEX_ALIST *) NULL);
  5689. }
  5690.  
  5691. /* Given an index name, return the offset in the_indices of this index,
  5692.    or -1 if there is no such index. */
  5693. translate_index (name)
  5694.      char *name;
  5695. {
  5696.   INDEX_ALIST *which = find_index (name);
  5697.  
  5698.   if (which)
  5699.     return (which->index);
  5700.   else
  5701.     return (-1);
  5702. }
  5703.  
  5704. /* Return the index list which belongs to NAME. */
  5705. INDEX_ELT *
  5706. index_list (name)
  5707.      char *name;
  5708. {
  5709.   int which = translate_index (name);
  5710.   if (which < 0)
  5711.     return ((INDEX_ELT *) - 1);
  5712.   else
  5713.     return (the_indices[which]);
  5714. }
  5715.  
  5716. /* Please release me, let me go... */
  5717. free_index (index)
  5718.      INDEX_ELT *index;
  5719. {
  5720.   INDEX_ELT *temp;
  5721.  
  5722.   while ((temp = index) != (INDEX_ELT *) NULL)
  5723.     {
  5724.       free (temp->entry);
  5725.       free (temp->node);
  5726.       index = index->next;
  5727.       free (temp);
  5728.     }
  5729. }
  5730.  
  5731. /* Flush an index by name. */
  5732. undefindex (name)
  5733.      char *name;
  5734. {
  5735.   int i;
  5736.   int which = find_index_offset (name);
  5737.  
  5738.   if (which < 0)
  5739.     return (which);
  5740.  
  5741.   i = name_index_alist[which]->index;
  5742.  
  5743.  
  5744.   free_index (the_indices[i]);
  5745.   the_indices[i] = (INDEX_ELT *) NULL;
  5746.  
  5747.   free (name_index_alist[which]->name);
  5748.   free (name_index_alist[which]);
  5749.   name_index_alist[which] = (INDEX_ALIST *) NULL;
  5750. }
  5751.  
  5752. /* Define an index known as NAME.  We assign the slot number.
  5753.    CODE if non-zero says to make this a code index. */
  5754. defindex (name, code)
  5755.      char *name;
  5756.      int code;
  5757. {
  5758.   register int i, slot;
  5759.  
  5760.   /* If it already exists, flush it. */
  5761.   undefindex (name);
  5762.  
  5763.   /* Try to find an empty slot. */
  5764.   slot = -1;
  5765.   for (i = 0; i < defined_indices; i++)
  5766.     if (!name_index_alist[i])
  5767.       {
  5768.     slot = i;
  5769.     break;
  5770.       }
  5771.  
  5772.   if (slot < 0)
  5773.     {
  5774.       /* No such luck.  Make space for another index. */
  5775.       slot = defined_indices;
  5776.       defined_indices++;
  5777.  
  5778.       name_index_alist = (INDEX_ALIST **)
  5779.     xrealloc ((char *)name_index_alist,
  5780.           (1 + defined_indices) * sizeof (INDEX_ALIST *));
  5781.       the_indices = (INDEX_ELT **)
  5782.     xrealloc ((char *)the_indices,
  5783.           (1 + defined_indices) * sizeof (INDEX_ELT *));
  5784.     }
  5785.  
  5786.   /* We have a slot.  Start assigning. */
  5787.   name_index_alist[slot] = (INDEX_ALIST *) xmalloc (sizeof (INDEX_ALIST));
  5788.   name_index_alist[slot]->name = savestring (name);
  5789.   name_index_alist[slot]->index = slot;
  5790.   name_index_alist[slot]->code = code;
  5791.  
  5792.   the_indices[slot] = (INDEX_ELT *) NULL;
  5793. }
  5794.  
  5795. /* Add the arguments to the current index command to the index NAME. */
  5796. index_add_arg (name)
  5797.      char *name;
  5798. {
  5799.   int which;
  5800.   char *index_entry;
  5801.   INDEX_ALIST *tem;
  5802.  
  5803.   tem = find_index (name);
  5804.  
  5805.   which = tem ? tem->index : -1;
  5806.  
  5807.   get_rest_of_line (&index_entry);
  5808.   ignore_blank_line ();
  5809.  
  5810.   if (which < 0)
  5811.     {
  5812.       line_error ("Unknown index reference `%s'", name);
  5813.       free (index_entry);
  5814.     }
  5815.   else
  5816.     {
  5817.       INDEX_ELT *new = (INDEX_ELT *) xmalloc (sizeof (INDEX_ELT));
  5818.       new->next = the_indices[which];
  5819.       new->entry = index_entry;
  5820.       new->node = current_node;
  5821.       new->code = tem->code;
  5822.       new->defining_line = line_number - 1;
  5823.       the_indices[which] = new;
  5824.     }
  5825. }
  5826.  
  5827. #define INDEX_COMMAND_SUFFIX "index"
  5828.  
  5829. /* The function which user defined index commands call. */
  5830. gen_index ()
  5831. {
  5832.   char *name = savestring (command);
  5833.   if (strlen (name) >= strlen ("index"))
  5834.     name[strlen (name) - strlen ("index")] = '\0';
  5835.   index_add_arg (name);
  5836.   free (name);
  5837. }
  5838.  
  5839. /* Define a new index command.  Arg is name of index. */
  5840. cm_defindex ()
  5841. {
  5842.   gen_defindex (0);
  5843. }
  5844.  
  5845. cm_defcodeindex ()
  5846. {
  5847.   gen_defindex (1);
  5848. }
  5849.  
  5850. gen_defindex (code)
  5851.      int code;
  5852. {
  5853.   char *name;
  5854.   get_rest_of_line (&name);
  5855.  
  5856.   if (find_index (name))
  5857.     {
  5858.       line_error ("Index `%s' already exists", name);
  5859.       free (name);
  5860.       return;
  5861.     }
  5862.   else
  5863.     {
  5864.       char *temp = (char *) alloca (1 + strlen (name) + strlen ("index"));
  5865.       sprintf (temp, "%sindex", name);
  5866.       define_user_command (temp, gen_index, 0);
  5867.       defindex (name, code);
  5868.       free (name);
  5869.     }
  5870. }
  5871.  
  5872. /* Append LIST2 to LIST1.  Return the head of the list. */
  5873. INDEX_ELT *
  5874. index_append (head, tail)
  5875.      INDEX_ELT *head, *tail;
  5876. {
  5877.   register INDEX_ELT *t_head = head;
  5878.  
  5879.   if (!t_head)
  5880.     return (tail);
  5881.  
  5882.   while (t_head->next)
  5883.     t_head = t_head->next;
  5884.   t_head->next = tail;
  5885.   return (head);
  5886. }
  5887.  
  5888. /* Expects 2 args, on the same line.  Both are index abbreviations.
  5889.    Make the first one be a synonym for the second one, i.e. make the
  5890.    first one have the same index as the second one. */
  5891. cm_synindex ()
  5892. {
  5893.   int redirector, redirectee;
  5894.   char *temp;
  5895.  
  5896.   skip_whitespace ();
  5897.   get_until_in_line (" ", &temp);
  5898.   redirectee = find_index_offset (temp);
  5899.   skip_whitespace ();
  5900.   free_and_clear (&temp);
  5901.   get_until_in_line (" ", &temp);
  5902.   redirector = find_index_offset (temp);
  5903.   free (temp);
  5904.   if (redirector < 0 || redirectee < 0)
  5905.     {
  5906.       line_error ("Unknown index reference");
  5907.     }
  5908.   else
  5909.     {
  5910.       /* I think that we should let the user make indices synonymous to
  5911.          each other without any lossage of info.  This means that one can
  5912.          say @synindex cp dt anywhere in the file, and things that used to
  5913.          be in cp will go into dt. */
  5914.       INDEX_ELT *i1 = the_indices[redirectee], *i2 = the_indices[redirector];
  5915.  
  5916.       if (i1 || i2)
  5917.     {
  5918.       if (i1)
  5919.         the_indices[redirectee] = index_append (i1, i2);
  5920.       else
  5921.         the_indices[redirectee] = index_append (i2, i1);
  5922.     }
  5923.  
  5924.       name_index_alist[redirectee]->index =
  5925.     name_index_alist[redirector]->index;
  5926.     }
  5927. }
  5928.  
  5929. cm_pindex ()            /* Pinhead index. */
  5930. {
  5931.   index_add_arg ("pg");
  5932. }
  5933.  
  5934. cm_vindex ()            /* Variable index. */
  5935. {
  5936.   index_add_arg ("vr");
  5937. }
  5938.  
  5939. cm_kindex ()            /* Key index. */
  5940. {
  5941.   index_add_arg ("ky");
  5942. }
  5943.  
  5944. cm_cindex ()            /* Concept index. */
  5945. {
  5946.   index_add_arg ("cp");
  5947. }
  5948.  
  5949. cm_findex ()            /* Function index. */
  5950. {
  5951.   index_add_arg ("fn");
  5952. }
  5953.  
  5954. cm_tindex ()            /* Data Type index. */
  5955. {
  5956.   index_add_arg ("tp");
  5957. }
  5958.  
  5959. /* Sorting the index. */
  5960. index_element_compare (element1, element2)
  5961.      INDEX_ELT **element1, **element2;
  5962. {
  5963.   /* This needs to ignore leading non-text characters. */
  5964.   return (strcmp ((*element1)->entry, (*element2)->entry));
  5965. }
  5966.  
  5967. /* Sort the index passed in INDEX, returning an array of
  5968.    pointers to elements.  The array is terminated with a NULL
  5969.    pointer.  We call qsort because it's supposed to be fast.
  5970.    I think this looks bad. */
  5971. INDEX_ELT **
  5972. sort_index (index)
  5973.      INDEX_ELT *index;
  5974. {
  5975.   INDEX_ELT *temp = index;
  5976.   INDEX_ELT **array;
  5977.   int count = 0;
  5978.  
  5979.   while (temp != (INDEX_ELT *) NULL)
  5980.     {
  5981.       count++;
  5982.       temp = temp->next;
  5983.     }
  5984.  
  5985.   /* We have the length.  Make an array. */
  5986.  
  5987.   array = (INDEX_ELT **) xmalloc ((count + 1) * sizeof (INDEX_ELT *));
  5988.   count = 0;
  5989.   temp = index;
  5990.  
  5991.   while (temp != (INDEX_ELT *) NULL)
  5992.     {
  5993.       array[count++] = temp;
  5994.       temp = temp->next;
  5995.     }
  5996.   array[count] = (INDEX_ELT *) NULL;    /* terminate the array. */
  5997.  
  5998.   /* Sort the array. */
  5999.   qsort (array, count, sizeof (INDEX_ELT *), index_element_compare);
  6000.  
  6001.   return (array);
  6002. }
  6003.  
  6004. /* Non-zero means that we are in the middle of printing an index. */
  6005. int printing_index = 0;
  6006.  
  6007. /* Takes one arg, a short name of an index to print.
  6008.    Outputs a menu of the sorted elements of the index. */
  6009. cm_printindex ()
  6010. {
  6011.   int item;
  6012.   INDEX_ELT *index;
  6013.   INDEX_ELT **array;
  6014.   char *index_name;
  6015.   int old_inhibitions = inhibit_paragraph_indentation;
  6016.   boolean previous_filling_enabled_value = filling_enabled;
  6017.  
  6018.   close_paragraph ();
  6019.   get_rest_of_line (&index_name);
  6020.  
  6021.   index = index_list (index_name);
  6022.   if ((int) index < 0)
  6023.     {
  6024.       line_error ("Unknown index name `%s'", index_name);
  6025.       free (index_name);
  6026.       return;
  6027.     }
  6028.   else
  6029.     free (index_name);
  6030.  
  6031.   array = sort_index (index);
  6032.  
  6033.   filling_enabled = false;
  6034.   inhibit_paragraph_indentation = 1;
  6035.   close_paragraph ();
  6036.   add_word ("* Menu:\n\n");
  6037.  
  6038.   printing_index = 1;
  6039.   for (item = 0; (index = array[item]); item++)
  6040.     {
  6041.       int real_line_number = line_number;
  6042.  
  6043.       /* Let errors generated while making the index entry point back
  6044.      at the line which contains the entry. */
  6045.       line_number = index->defining_line;
  6046.  
  6047.       /* If this particular entry should be printed as a "code" index,
  6048.      then wrap the entry with "@code{...}". */
  6049.       if (index->code)
  6050.     execute_string ("* @code{%s}: ", index->entry);
  6051.       else
  6052.     execute_string ("* %s: ", index->entry);
  6053.  
  6054.       /* Pad the front of the destination nodename so that
  6055.      the output looks nice. */
  6056.       if (fill_column > 40 && output_column < 40)
  6057.     indent (40 - output_column);
  6058.  
  6059.       execute_string ("%s.\n", index->node);
  6060.  
  6061.       line_number = real_line_number;
  6062.       flush_output ();
  6063.     }
  6064.  
  6065.   printing_index = 0;
  6066.   free (array);
  6067.   close_single_paragraph ();
  6068.   filling_enabled = previous_filling_enabled_value;
  6069.   inhibit_paragraph_indentation = old_inhibitions;
  6070. }
  6071.  
  6072.  
  6073. /* **************************************************************** */
  6074. /*                                    */
  6075. /*            Making User Defined Commands            */
  6076. /*                                    */
  6077. /* **************************************************************** */
  6078.  
  6079. define_user_command (name, proc, needs_braces_p)
  6080.      char *name;
  6081.      FUNCTION *proc;
  6082.      int needs_braces_p;
  6083. {
  6084.   int slot = user_command_array_len;
  6085.   user_command_array_len++;
  6086.  
  6087.   if (!user_command_array)
  6088.     user_command_array = (COMMAND **) xmalloc (1 * sizeof (COMMAND *));
  6089.  
  6090.   user_command_array = (COMMAND **) xrealloc (user_command_array,
  6091.                           (1 + user_command_array_len) *
  6092.                           sizeof (COMMAND *));
  6093.  
  6094.   user_command_array[slot] = (COMMAND *) xmalloc (sizeof (COMMAND));
  6095.   user_command_array[slot]->name = savestring (name);
  6096.   user_command_array[slot]->proc = proc;
  6097.   user_command_array[slot]->argument_in_braces = needs_braces_p;
  6098. }
  6099.  
  6100. /* Make ALIAS run the named FUNCTION.  Copies properties from FUNCTION. */
  6101. define_alias (alias, function)
  6102.      char *alias, *function;
  6103. {
  6104. }
  6105.  
  6106. /* Set the paragraph indentation variable to the value specified in STRING.
  6107.    Values can be:
  6108.    `asis': Don't change existing indentation.
  6109.    `none': Remove existing indentation.
  6110.       NUM: Indent NUM spaces at the starts of paragraphs.
  6111.            Note that if NUM is zero, we assume `none'.
  6112.  
  6113.    Returns 0 if successful, or non-zero if STRING isn't one of the above. */
  6114. int
  6115. set_paragraph_indent (string)
  6116.      char *string;
  6117. {
  6118.   if (strcmp (string, "asis") == 0)
  6119.     paragraph_start_indent = 0;
  6120.   else if (strcmp (string, "none") == 0)
  6121.     paragraph_start_indent = -1;
  6122.   else
  6123.     {
  6124.       if (sscanf (string, "%d", ¶graph_start_indent) != 1)
  6125.     return (-1);
  6126.       else
  6127.     {
  6128.       if (paragraph_start_indent == 0)
  6129.         paragraph_start_indent = -1;
  6130.     }
  6131.     }
  6132.   return (0);
  6133. }
  6134.  
  6135. cm_paragraphindent ()
  6136. {
  6137.   char *arg;
  6138.  
  6139.   get_rest_of_line (&arg);
  6140.   if (set_paragraph_indent (arg) != 0)
  6141.     line_error ("Bad argument to @paragraphindent");
  6142.  
  6143.   free (arg);
  6144. }
  6145.  
  6146. /* Some support for footnotes. */
  6147.  
  6148. /* Footnotes are a new construct in Info.  We don't know the best method
  6149.    of implementing them for sure, so we present two possiblities.
  6150.  
  6151.    SeparateNode:
  6152.     Make them look like followed references, with the reference
  6153.     destinations in a makeinfo manufactured node or,
  6154.  
  6155.    EndNode:
  6156.     Make them appear at the bottom of the node that they originally
  6157.     appeared in. */
  6158. #define SeparateNode 0
  6159. #define EndNode 1
  6160.  
  6161. int footnote_style = EndNode;
  6162. boolean first_footnote_this_node = true;
  6163. int footnote_count = 0;
  6164.  
  6165. /* Set the footnote style based on he style identifier in STRING. */
  6166. int
  6167. set_footnote_style (string)
  6168.      char *string;
  6169. {
  6170.   if ((stricmp (string, "separate") == 0) ||
  6171.       (stricmp (string, "MN") == 0))
  6172.     footnote_style = SeparateNode;
  6173.   else if ((stricmp (string, "end") == 0) ||
  6174.        (stricmp (string, "EN") == 0))
  6175.     footnote_style = EndNode;
  6176.   else
  6177.     return (-1);
  6178.  
  6179.  return (0);
  6180. }
  6181.  
  6182. cm_footnotestyle ()
  6183. {
  6184.   char *arg;
  6185.  
  6186.   get_rest_of_line (&arg);
  6187.  
  6188.   if (set_footnote_style (arg) != 0)
  6189.     line_error ("Bad argument to @footnotestyle");
  6190.  
  6191.   free (arg);
  6192. }
  6193.  
  6194. typedef struct fn
  6195. {
  6196.   struct fn *next;
  6197.   char *marker;
  6198.   char *note;
  6199. }  FN;
  6200.  
  6201. FN *pending_notes = (FN *) NULL;
  6202.  
  6203. /* A method for remembering footnotes.  Note that this list gets output
  6204.    at the end of the current node. */
  6205. remember_note (marker, note)
  6206.      char *marker, *note;
  6207. {
  6208.   FN *temp = (FN *) xmalloc (sizeof (FN));
  6209.  
  6210.   temp->marker = savestring (marker);
  6211.   temp->note = savestring (note);
  6212.   temp->next = pending_notes;
  6213.   pending_notes = temp;
  6214.   footnote_count++;
  6215. }
  6216.  
  6217. /* How to get rid of existing footnotes. */
  6218. free_pending_notes ()
  6219. {
  6220.   FN *temp;
  6221.  
  6222.   while ((temp = pending_notes) != (FN *) NULL)
  6223.     {
  6224.       free (temp->marker);
  6225.       free (temp->note);
  6226.       pending_notes = pending_notes->next;
  6227.       free (temp);
  6228.     }
  6229.   first_footnote_this_node = true;
  6230.   footnote_count = 0;
  6231. }
  6232.  
  6233. /* What to do when you see a @footnote construct. */
  6234.  
  6235.  /* Handle a "footnote".
  6236.     footnote *{this is a footnote}
  6237.     where "*" is the marker character for this note. */
  6238. cm_footnote ()
  6239. {
  6240.   char *marker;
  6241.   char *note;
  6242.  
  6243.   get_until ("{", &marker);
  6244.   canon_white (marker);
  6245.  
  6246.   /* Read the argument in braces. */
  6247.   if (curchar () != '{')
  6248.     {
  6249.       line_error ("`@%s' expected more than just `%s'.  It needs something in `{...}'", command, marker);
  6250.       free (marker);
  6251.       return;
  6252.     }
  6253.   else
  6254.     {
  6255.       int braces = 1;
  6256.       int temp = ++input_text_offset;
  6257.       int len;
  6258.  
  6259.       while (braces)
  6260.     {
  6261.       if (temp == size_of_input_text)
  6262.         {
  6263.           line_error ("No closing brace for footnote `%s'", marker);
  6264.           return;
  6265.         }
  6266.  
  6267.       if (input_text[temp] == '{')
  6268.         braces++;
  6269.       else if (input_text[temp] == '}')
  6270.         braces--;
  6271.       else if (input_text[temp] == '\n')
  6272.         line_number ++;
  6273.  
  6274.       temp++;
  6275.     }
  6276.  
  6277.       len = (temp - input_text_offset) - 1;
  6278.       note = (char *)xmalloc (len + 1);
  6279.       strncpy (note, &input_text[input_text_offset], len);
  6280.       note[len] = '\0';
  6281.       input_text_offset = temp;
  6282.     }
  6283.  
  6284.   if (!current_node || !*current_node)
  6285.     {
  6286.       line_error ("Footnote defined without parent node");
  6287.       free (marker);
  6288.       free (note);
  6289.       return;
  6290.     }
  6291.  
  6292.   if (!*marker)
  6293.     {
  6294.       free (marker);
  6295.  
  6296.       if (number_footnotes)
  6297.     {
  6298.       marker = (char *)xmalloc (10);
  6299.       sprintf (marker, "%d", current_footnote_number);
  6300.       current_footnote_number++;
  6301.     }
  6302.       else
  6303.     marker = savestring ("*");
  6304.     }
  6305.  
  6306.   remember_note (marker, note);
  6307.  
  6308.   /* Your method should at least insert MARKER. */
  6309.   switch (footnote_style)
  6310.     {
  6311.     case SeparateNode:
  6312.       add_word_args ("(%s)", marker);
  6313.       if (first_footnote_this_node)
  6314.     {
  6315.       char *temp_string;
  6316.  
  6317.       temp_string = (char *)
  6318.         xmalloc ((strlen (current_node)) + (strlen ("-Footnotes")) + 1);
  6319.  
  6320.       add_word_args (" (*note %s-Footnotes::)", current_node);
  6321.       strcpy (temp_string, current_node);
  6322.       strcat (temp_string, "-Footnotes");
  6323.       remember_node_reference (temp_string, line_number, followed_reference);
  6324.       free (temp_string);
  6325.       first_footnote_this_node = false;
  6326.     }
  6327.       break;
  6328.  
  6329.     case EndNode:
  6330.       add_word_args ("(%s)", marker);
  6331.       break;
  6332.  
  6333.     default:
  6334.       break;
  6335.     }
  6336.   free (marker);
  6337.   free (note);
  6338. }
  6339.  
  6340. /* Non-zero means that we are currently in the process of outputting
  6341.    footnotes. */
  6342. int already_outputting_pending_notes = 0;
  6343.  
  6344. /* Output the footnotes.  We are at the end of the current node. */
  6345. output_pending_notes ()
  6346. {
  6347.   FN *footnote = pending_notes;
  6348.  
  6349.   if (!pending_notes)
  6350.     return;
  6351.  
  6352.   switch (footnote_style)
  6353.     {
  6354.  
  6355.     case SeparateNode:
  6356.       {
  6357.     char *old_current_node = current_node;
  6358.     char *old_command = savestring (command);
  6359.  
  6360.     already_outputting_pending_notes++;
  6361.     execute_string ("@node %s-Footnotes,,,%s\n", current_node, current_node);
  6362.     already_outputting_pending_notes--;
  6363.     current_node = old_current_node;
  6364.     free (command);
  6365.     command = old_command;
  6366.       }
  6367.       break;
  6368.  
  6369.     case EndNode:
  6370.       close_paragraph ();
  6371.       in_fixed_width_font++;
  6372.       execute_string ("---------- Footnotes ----------\n\n");
  6373.       in_fixed_width_font--;
  6374.       break;
  6375.     }
  6376.  
  6377.   /* Handle the footnotes in reverse order. */
  6378.   {
  6379.     FN **array = (FN **) xmalloc ((footnote_count + 1) * sizeof (FN *));
  6380.  
  6381.     array[footnote_count] = (FN *) NULL;
  6382.  
  6383.     while (--footnote_count > -1)
  6384.       {
  6385.     array[footnote_count] = footnote;
  6386.     footnote = footnote->next;
  6387.       }
  6388.  
  6389.     filling_enabled = true;
  6390.     indented_fill = true;
  6391.  
  6392.     while (footnote = array[++footnote_count])
  6393.       {
  6394.  
  6395.     switch (footnote_style)
  6396.       {
  6397.       case SeparateNode:
  6398.       case EndNode:
  6399.         execute_string ("(%s)  %s", footnote->marker, footnote->note);
  6400.         close_paragraph ();
  6401.         break;
  6402.       }
  6403.       }
  6404.     close_paragraph ();
  6405.     free (array);
  6406.   }
  6407. }
  6408.  
  6409. /*
  6410.  * Local variables:
  6411.  * end:
  6412.  */
  6413.  
  6414.